mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 13:43:59 +00:00
46 lines
756 B
Vue
46 lines
756 B
Vue
<template>
|
|
<div>
|
|
<p /><h3>Index Module</h3>
|
|
<button @click="increment">
|
|
{{ counter }}
|
|
</button>
|
|
<br>
|
|
<NuxtLink to="/about">
|
|
About
|
|
</NuxtLink>
|
|
<br>
|
|
<br>
|
|
<h3>Todo Module</h3>
|
|
<NuxtLink to="/todos">
|
|
Todos
|
|
</NuxtLink>
|
|
<br>
|
|
<br>
|
|
<h3>Nested Modules</h3>
|
|
<NuxtLink to="/website">
|
|
Website
|
|
</NuxtLink>
|
|
</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapState } from 'vuex'
|
|
|
|
export default {
|
|
// fetch(context) is called by the server-side
|
|
// and before instantiating the component
|
|
fetch({ store }) {
|
|
store.commit('increment')
|
|
},
|
|
computed: mapState([
|
|
'counter'
|
|
]),
|
|
methods: {
|
|
increment() {
|
|
this.$store.commit('increment')
|
|
}
|
|
}
|
|
}
|
|
</script>
|