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

26 lines
350 B
Vue
Raw Normal View History

2021-05-13 11:03:32 +08:00
<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>
2021-05-13 11:03:32 +08:00
</style>