20 lines
347 B
Vue
20 lines
347 B
Vue
|
|
<template>
|
||
|
|
<!-- 基本资料 -->
|
||
|
|
<div v-show="visible" class="app-container">
|
||
|
|
|
||
|
|
基本资料内容
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script setup>
|
||
|
|
import { ref } from 'vue';
|
||
|
|
|
||
|
|
const props = defineProps({
|
||
|
|
// 定义一个名为 'exampleProp' 的字符串类型的 prop
|
||
|
|
visible: {
|
||
|
|
type: String,
|
||
|
|
required: true,
|
||
|
|
default: 'false'
|
||
|
|
}
|
||
|
|
});
|
||
|
|
</script>
|