21 lines
351 B
Vue
Raw Normal View History

2025-03-07 14:36:54 +08:00
<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>