index.vue
527 Bytes
<template>
<div class="miniapp">
<home-page></home-page>
</div>
</template>
<script>
import home from './home.vue'
export default {
data() {
return {
};
},
mounted() {
},
beforeDestroy() {
},
methods: {
},
components: {
'home-page': home
}
};
</script>
<style>
.miniapp {
display: inline-block;
margin-top: 30px;
margin-bottom: 30px;
}
</style>