You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

27 lines
382 B

<template>
这是Home页面
<hr>
<div class="wrap">
<p>count: {{ count }}</p>
</div>
</template>
<script setup>
import {computed} from "vue";
import {useStore} from "vuex";
const store = useStore()
const count = computed(() => store.state.count)
</script>
<style lang="scss">
.wrap {
background: yellow;
p {
color: blue;
font-size: 24px;
}
}
</style>