18 lines
320 B
Vue
18 lines
320 B
Vue
<template>
|
|
<!-- 常见描述 -->
|
|
<div v-show="visible">常见描述内容</div>
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
import { ref } from 'vue';
|
|
|
|
const props = defineProps({
|
|
// 定义一个名为 'exampleProp' 的字符串类型的 prop
|
|
visible: {
|
|
type: String,
|
|
required: true,
|
|
default: 'false'
|
|
}
|
|
});
|
|
</script> |