snowy/snowy-admin-web/src/views/dev/dict/index.vue

24 lines
560 B
Vue

<template>
<a-card>
<a-tabs size="large" v-model:activeKey="activeKey">
<a-tab-pane v-for="item in tabListNoTitle" :key="item.key" :tab="item.tab">
<category :type="item.key" />
</a-tab-pane>
</a-tabs>
</a-card>
</template>
<script setup name="devDict">
import Category from './category/index.vue'
const activeKey = ref('FRM')
const tabListNoTitle = ref([
{ key: 'FRM', tab: '' },
{ key: 'BIZ', tab: '' }
])
</script>
<style lang="less" scoped>
:deep(.ant-card-body) {
padding-top: 0 !important;
}
</style>