UNPKG

kui-vue

Version:

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

19 lines (17 loc) 428 B
<cn> ### 卡片式页签 另一种样式的页签。 </cn> ```vue <template> <Tabs v-model="current" card> <TabPanel key="1" title="Tab 1"> Content of Tab Pane 1 </TabPanel> <TabPanel key="2" title="Tab 2"> Content of Tab Pane 2 </TabPanel> <TabPanel key="3" title="Tab 3"> Content of Tab Pane 3 </TabPanel> </Tabs> </template> <script setup> import { ref } from "vue"; const current = ref("1"); </script> ```