mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 13:43:59 +00:00
13 lines
218 B
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>
|