Move origin handling to a separate page

This commit is contained in:
2019-03-02 16:26:28 +01:00
parent d21380a6a4
commit 4736462c72
8 changed files with 208 additions and 34 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ export default {
},
head() {
return {
title: "Dancefinder - Events"
title: "Dancefinder - Evenemang"
};
}
};
+18
View File
@@ -0,0 +1,18 @@
<template>
<origins />
</template>
<script>
import Origins from "~/components/pages/origins";
export default {
components: {
Origins
},
head() {
return {
title: "Dancefinder - Startpunkter"
};
}
};
</script>