naive-ui/demo/documentation/components/transfer/zhCN/basic.demo.md
2020-10-06 03:04:22 +08:00

560 B

基础用法

穿梭框的基础用法。如果你有一大堆数据,看下一个例子。

<n-transfer
  ref="transfer"
  v-model:value="value"
  :options="options"
/>
function createOptions () {
  return Array.apply(null, { length: 100 }).map((v, i) => ({
    label: 'Option' + i,
    value: i,
    disabled: i % 5 === 0
  }))
}

function createValues () {
  return Array.apply(null, { length: 50 }).map((v, i) => i)
}

export default {
  data () {
    return {
      options: createOptions(),
      value: createValues()
    }
  },
}