nav is going on in header menu

This commit is contained in:
2020-02-27 15:07:17 +01:00
parent 62bde64b7b
commit 6c4f38f017
16 changed files with 436 additions and 120 deletions
+6 -4
View File
@@ -9,6 +9,7 @@
v-html="item.title"
/>
</h1>
<p>{{ item.type }}</p>
</header>
</article>
</template>
@@ -28,10 +29,11 @@ export default {
methods: {
onclick () {
console.log('clicked on locorum item', this.item)
// this.$router.push({
// name: `locorumItem`,
// query: { id: this.item.uuid }
// })
this.$router.push({
name: `locorum`,
params: { id: this.item.uuid }
// query: { id: this.item.uuid }
})
}
}
}