UNPKG

kui-vue

Version:

A lightweight desktop UI component library suitable for Vue.js 2.

19 lines (17 loc) 306 B
<cn> ### 默认展示 默认会在以上组件展示 </cn> ```vue <template> <Space vertical block> Select: <Select :width="220" /> Table: <Table :data="[]" :columns="columns" /> </Space> </template> <script setup> const columns = [{ title: "Name" }, { title: "Age" }]; </script> ```