subweb/src/views/home/HomeContent.vue

19 lines
309 B
Vue
Raw Normal View History

2022-07-01 14:32:25 +08:00
<template>
<section id="main" class="container medium">
<home-header />
<home-form />
</section>
</template>
<script>
import HomeHeader from './HomeHeader';
import HomeForm from './HomeForm';
export default {
name: 'HomeContent',
components: {
HomeHeader,
HomeForm,
},
};
</script>