chenyc
2025-08-28 a483e28e1d66ff50cd52ca64f9af66c88d8d52b4
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>