Files
layui/example/docs/zh-CN/components/transfer.md
2021-12-16 17:57:59 +08:00

1.6 KiB

::: title 基础使用 :::

::: demo

<script> import { ref } from 'vue' export default { setup() { const dataSource1 = [{id:'1', title:'易大师'},{id:'2', title:'战争之王'}] return { dataSource1 } } } </script>

:::

::: title 指定标题 :::

::: demo

<script> import { ref } from 'vue' export default { setup() { const dataSource2 = [{id:'1', title:'易大师'},{id:'2', title:'战争之王'}] const title = ['我喜欢的','我不喜欢的'] return { dataSource2, title } } } </script>

:::

::: title 使用插槽 :::

::: demo

{{data.id}} <script> import { ref } from 'vue' export default { setup() { const dataSource1 = [{id:'1', title:'易大师'},{id:'2', title:'战争之王'}] return { dataSource1 } } } </script>

:::

::: title transfer 属性 :::

::: table

Name Description Accepted Values
dataSource 数据来源 --
title 标题 --
id 主键 --

:::

::: title transfer 插槽 :::

::: table

Name Description Accepted Values
item 列表项 { data }

:::

::: comment :::