add .DS_Store to .gitignore & fix routing
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -82,3 +82,5 @@ dist
|
|||||||
|
|
||||||
# Service worker
|
# Service worker
|
||||||
sw.*
|
sw.*
|
||||||
|
|
||||||
|
.DS_store
|
||||||
@@ -16,7 +16,7 @@ export default {
|
|||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.menuEntries = store.map(({ title, slug }) => ({
|
this.menuEntries = store.map(({ title, slug }) => ({
|
||||||
slug: `/categories/${slug}`,
|
slug: '/categories' + slug,
|
||||||
title
|
title
|
||||||
}))
|
}))
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user