index.vue 389 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <div class="wrapper">
  3. <!-- 楼层装修组件 -->
  4. <tpl />
  5. </div>
  6. </template>
  7. <script>
  8. import tpl from "@/pages/tabbar/home/views.vue";
  9. export default {
  10. data() {
  11. return {
  12. background: {
  13. backgroundColor: "#fff",
  14. },
  15. };
  16. },
  17. components: {
  18. tpl,
  19. },
  20. };
  21. </script>
  22. <style lang="scss" scoped>
  23. </style>