naweigete-web/pages/about.vue
2025-03-12 14:18:25 +08:00

14 lines
251 B
Vue

<template>
<div class="box">hell123o</div>
</template>
<script lang="ts" setup>
import { useStore } from '@/store/index'
const store = useStore()
function changeName(): void {
store.name = 'new Name'
}
</script>
<style lang="scss" scoped>
</style>