init: 初始系统模板

This commit is contained in:
TsMask
2023-09-05 14:38:23 +08:00
parent a5bc16ae4f
commit 1075c8ae4f
130 changed files with 22531 additions and 1 deletions

30
src/views/dome/dome3.vue Normal file
View File

@@ -0,0 +1,30 @@
<template>
<PageContainer title="Version" sub-title="show current project dependencies">
<template #content>
<strong>Content Area</strong>
</template>
<template #extra>
<strong>Extra Area</strong>
</template>
<template #extraContent>
<strong>ExtraContent Area</strong>
</template>
<template #tags>
<a-tag>Tag1</a-tag>
<a-tag color="pink">Tag2</a-tag>
</template>
<a-card title="Info">
<p v-for="i in list" :key="i">
text block...
<a-tag>{{ i }}</a-tag>
</p>
</a-card>
</PageContainer>
</template>
<script lang="ts" setup>
import { ref } from 'vue';
import { PageContainer } from '@ant-design-vue/pro-layout';
const list = ref<number>(50);
</script>