zmc
2023-12-22 c7e4dd9bd50cf6e6426598753c796ec1a27f333f
1
2
3
4
5
6
export const store = reactive({
    count:0,
    increment(){
        this.count++
    }
})