[新增] tab 选项卡组件

This commit is contained in:
就眠仪式
2021-10-05 19:04:06 +08:00
parent 7fc0c0dfd5
commit ca490d6430
8 changed files with 81 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
::: demo
<template>
<lay-tab><div style="padding: 30px;">面板</div></lay-tab>
</template>
<script>
import { ref } from 'vue'
export default {
setup() {
return {
}
}
}
</script>
:::