mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43: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
22 lines
312 B
Vue
22 lines
312 B
Vue
<template>
|
|
<div>
|
|
<NLink v-if="i>0" :to="`./${i-1}`">
|
|
Previous
|
|
</NLink>
|
|
Page {{ i }}
|
|
<NLink v-if="i<5" :to="`./${i+1}`">
|
|
Next
|
|
</NLink>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
computed: {
|
|
i () {
|
|
return parseInt(this.$route.params.i) || 0
|
|
}
|
|
}
|
|
}
|
|
</script>
|