chenyc
2023-06-04 b8ce0e7f0652aab9d9b0df9c5fbaebd924d31cc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<template>
    <div class="test">
        {{a}}
        <button @click="actionA">点我呀</button>
    </div>
</template>
<script lang="ts" setup>
    import {ref,reactive,watchEffect,watch} from 'vue'
    import usePage from './vuetool/index.js'
    const {a,actionA} = usePage()
 
</script>
<style>
    .paibanclass{
        background: rgb(228, 231, 225);
        color: blue;
    }
</style>