mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 00:53:55 +00:00
42406d6075
* feat: store and replay vuex mutations for static target * test: add full-static fixture * perf: clean store subscription before render * fix: record mutations after nuxtServerInit and middleware
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 {
|
|
fetch () {
|
|
this.$store.commit('COUNT')
|
|
},
|
|
async asyncData ({ store }) {
|
|
await store.dispatch('auth/FETCH_USER')
|
|
}
|
|
}
|
|
</script>
|