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