Files
Vue_Notebook/3.10/Vue3Proj/vue-project/src/hook2.vue
2025-03-10 15:32:35 +08:00

16 lines
304 B
Vue

<template>
<div>
<hook1 v-if="flag"></hook1>
<button @click="flag = !flag">change</button>
</div>
</template>
<script setup lang="ts">
import hook1 from "./hook1.vue"
import {ref} from 'vue'
let flag = ref<boolean>(true)
</script>
<style lang="less">
</style>