1
0
mirror of https://github.com/nuxt/nuxt.git synced 2025-02-25 10:08:29 +00:00
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>