chenyc
2025-08-26 7c2cce763bf0959fd2cc55b16557931f4e4ffceb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<template>
    <div class="test">
        {{a}}
        <button @click="actionA">点我呀</button>
    </div>
</template>
<script lang="ts" setup>
    import usePage from './vuetool/index.js'
    const {a,actionA} = usePage()
 
</script>
<style>
    .paibanclass {
        background: rgb(228, 231, 225);
        color: #00f;
    }
</style>