18 lines
320 B
Vue
Raw Normal View History

2025-10-21 17:43:57 +08:00
<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>