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