mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-10 11:26:39 -05:00
26 lines
525 B
Vue
26 lines
525 B
Vue
<template>
|
|
<div class="home-page-component">
|
|
<subscription-form />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import BasePageMixin from "mixins/base-page.js";
|
|
import SubscriptionFormSection from "sections/subscription-form.vue";
|
|
|
|
export default {
|
|
mixins: [
|
|
BasePageMixin
|
|
],
|
|
|
|
components: {
|
|
"subscription-form": SubscriptionFormSection
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
metaKeywords: "home"
|
|
};
|
|
}
|
|
};
|
|
</script>
|