bottomForm.vue 347 B

123456789101112131415161718192021222324
  1. <template>
  2. <view>
  3. <bottom1 />
  4. <bottom2 />
  5. </view>
  6. </template>
  7. <script>
  8. import bottom1 from "./bottomModules/bottom1.vue"
  9. import bottom2 from "./bottomModules/bottom2.vue"
  10. export default {
  11. components: {
  12. bottom1,
  13. bottom2
  14. },
  15. data() {
  16. return {
  17. }
  18. },
  19. }
  20. </script>
  21. <style></style>