chenyc
2025-08-13 8635962f39c2d896cd521dc794d97d34a8f60ed6
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>