naive-ui/demo/documentation/components/transfer/zhCN/basic.md

31 lines
554 B
Markdown
Raw Normal View History

2020-02-02 02:07:00 +08:00
# 基础用法
2020-02-07 23:40:07 +08:00
穿梭框的基础用法。如果你有一大堆数据,看下一个例子。
2020-02-02 02:07:00 +08:00
```html
<n-transfer
ref="transfer"
v-model="value"
:options="options"
/>
```
```js
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()
}
},
}
```