| 12345678910111213141516171819202122232425 |
- <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>
|