21 lines
331 B
Vue
Raw Normal View History

2025-10-21 17:43:57 +08:00
<template>
<!-- 基本资料 -->
<div v-show="visible" class="app-container">
基本资料内容
</div>
</template>
2025-10-24 15:37:24 +08:00
<script setup lang="ts">
2025-10-21 17:43:57 +08:00
const props = defineProps({
// 定义一个名为 'exampleProp' 的字符串类型的 prop
visible: {
2025-10-24 15:37:24 +08:00
type: Boolean,
2025-10-21 17:43:57 +08:00
required: true,
2025-10-24 15:37:24 +08:00
default: false
2025-10-21 17:43:57 +08:00
}
});
2025-10-24 15:37:24 +08:00
2025-10-21 17:43:57 +08:00
</script>