Nuxt/test/fixtures/full-static/layouts/default.vue
Pooya Parsa 42406d6075
feat: store and replay vuex mutations for static target (#7350)
* 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
2020-05-12 13:05:24 +02:00

22 lines
263 B
Vue

<template>
<div>
<NLink to="/">
Home
</NLink>
<NLink to="/store">
Store
</NLink>
<NLink to="/pagination/1">
Pagination
</NLink>
<br>
<Nuxt />
</div>
</template>
<style scoped>
a {
margin: 0 1em;
}
</style>