lilishop-uniapp/pages/tabbar/home/index.vue

29 lines
389 B
Vue

<template>
<div class="wrapper">
<!-- 楼层装修组件 -->
<tpl />
</div>
</template>
<script>
import tpl from "@/pages/tabbar/home/views.vue";
export default {
data() {
return {
background: {
backgroundColor: "#fff",
},
};
},
components: {
tpl,
},
};
</script>
<style lang="scss" scoped>
</style>