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

29 lines
389 B
Vue
Raw Normal View History

2021-05-13 11:03:32 +08:00
<template>
<div class="wrapper">
2021-05-24 15:49:22 +08:00
<!-- 楼层装修组件 -->
2021-05-13 11:03:32 +08:00
<tpl />
</div>
</template>
<script>
import tpl from "@/pages/tabbar/home/views.vue";
2021-06-04 18:11:34 +08:00
2021-05-13 11:03:32 +08:00
export default {
2021-06-04 18:11:34 +08:00
2021-05-13 11:03:32 +08:00
data() {
return {
background: {
backgroundColor: "#fff",
},
};
},
components: {
tpl,
},
};
</script>
<style lang="scss" scoped>
2021-05-13 11:03:32 +08:00
</style>