17 lines
318 B
Vue
17 lines
318 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>
|