chenyc
2025-08-01 010db1fc095d18ef21754786c3305c008a79d9d2
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>