Nuxt/examples/nuxt-prefetch/pages/fleeting.vue
pooya parsa e7cc2757c3 refactor: update eslint-config to 1.x
Co-authored-by: Alexander Lichter <manniL@gmx.net>
2019-07-10 15:15:49 +04:30

18 lines
261 B
Vue
Executable File

<template>
<div>
<NuxtLink v-for="link of $store.state.links" :key="link" :to="{ name: link }">
/{{ link }}
</NuxtLink>
</div>
</template>
<script>
export default {
head () {
return {
title: this.$route.name
}
}
}
</script>