12345678910111213141516171819202122232425262728293031 |
- <template>
- <hc-card>
- <template #header>
- 1
- </template>
- <template #extra>
- <el-button hc-btn type="primary">
- <HcIcon name="add" />
- <span>新增</span>
- </el-button>
- </template>
- 1111
- </hc-card>
- </template>
- <script setup>
- import { onMounted, ref } from 'vue'
- defineOptions({
- name: 'PeriodsAdminMiddle',
- })
- //渲染完成
- onMounted(() => {
- })
- </script>
- <style scoped lang="scss">
- </style>
|