tyt-weapp/pages/index/index.vue
2025-12-18 18:11:37 +08:00

15 lines
195 B
Vue

<script setup>
import { ref } from 'vue';
const a = ref("hello world")
function change(){
a.value = "lsp"
}
</script>
<template>
{{ a }}
<button @click="change">测试</button>
</template>