mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
23 lines
369 B
Vue
23 lines
369 B
Vue
<template>
|
|
<div>
|
|
<p>{{ counter }}</p>
|
|
<p>
|
|
<button @click="increment">+</button>
|
|
<button @click="decrement">-</button>
|
|
</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapState, mapMutations } from 'vuex'
|
|
|
|
export default {
|
|
computed: {
|
|
...mapState(['counter'])
|
|
},
|
|
methods: {
|
|
...mapMutations(['increment', 'decrement'])
|
|
}
|
|
}
|
|
</script>
|