19 lines
260 B
Vue
19 lines
260 B
Vue
<template>
|
|
<origins />
|
|
</template>
|
|
|
|
<script>
|
|
import Origins from "~/components/pages/origins";
|
|
|
|
export default {
|
|
components: {
|
|
Origins
|
|
},
|
|
head() {
|
|
return {
|
|
title: "Dancefinder - Startpunkter"
|
|
};
|
|
}
|
|
};
|
|
</script>
|