Nuxt/examples/vuex-store/pages/about.vue

13 lines
218 B
Vue

<template>
<div>
<p>
<button @click="$store.commit('increment')">
{{ $store.state.counter }}
</button><br>
<NuxtLink to="/">
Home
</NuxtLink>
</p>
</div>
</template>