kui-vue
Version:
A lightweight desktop UI component library suitable for Vue.js 2.
19 lines (17 loc) • 416 B
Markdown
<cn>
### 居中
标签居中展示。
</cn>
```vue
<template>
<Tabs v-model="current" centered>
<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>
```