mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-10 03:26:38 -05:00
27 lines
525 B
Vue
27 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>
|