move _category.vue to root of /pages

This commit is contained in:
Kevin Van Der Werff
2019-06-15 22:52:53 +02:00
parent 76ffd17131
commit 7d3b758489
2 changed files with 3 additions and 6 deletions

View File

@@ -15,10 +15,7 @@ export default {
}
},
created() {
this.menuEntries = store.map(({ title, slug }) => ({
slug: '/categories' + slug,
title
}))
this.menuEntries = store.map(({ title, slug }) => ({ title, slug }))
}
}
</script>