index.vue 350 B

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