21 lines
351 B
Vue
21 lines
351 B
Vue
|
<template>
|
||
|
<CustomCard> 基础信息 </CustomCard>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
import { ref } from 'vue';
|
||
|
import CustomCard from '@/components/CustomCard.vue';
|
||
|
|
||
|
/* --------------- data --------------- */
|
||
|
// #region
|
||
|
|
||
|
// #endregion
|
||
|
|
||
|
/* --------------- methods --------------- */
|
||
|
// #region
|
||
|
|
||
|
// #endregion
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped></style>
|