123456789101112131415161718192021222324 |
- <template>
- <view>
- <bottom1 />
- <bottom2 />
- </view>
- </template>
- <script>
- import bottom1 from "./bottomModules/bottom1.vue"
- import bottom2 from "./bottomModules/bottom2.vue"
- export default {
- components: {
- bottom1,
- bottom2
- },
- data() {
- return {
- }
- },
- }
- </script>
- <style></style>
|