mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 09:03:53 +00:00
19 lines
351 B
Vue
19 lines
351 B
Vue
|
<template>
|
||
|
<div>
|
||
|
<h3>Welcome {{ $store.state.auth.user.name }}!</h3>
|
||
|
<br>
|
||
|
You visited this page <strong>{{ $store.state.counter }}</strong> times.
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
async asyncData ({ store }) {
|
||
|
await store.dispatch('auth/FETCH_USER')
|
||
|
},
|
||
|
fetch () {
|
||
|
this.$store.commit('COUNT')
|
||
|
}
|
||
|
}
|
||
|
</script>
|