You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
298 B
13 lines
298 B
<template>
|
|
<h1>
|
|
Common Hello.vue <br /><small>{{ modalDisplay }}</small>
|
|
<van-button type="primary" @click="modalDisplay = !modalDisplay">
|
|
主要按钮
|
|
</van-button>
|
|
</h1>
|
|
</template>
|
|
|
|
<script setup>
|
|
const modalDisplay = useModal();
|
|
console.log(modalDisplay.value);
|
|
</script>
|
|
|