App.vue 363 B

1234567891011121314151617181920212223
  1. <template>
  2. <div>
  3. <h1>App</h1>
  4. <hr>
  5. <hr>
  6. <Demo1></Demo1>
  7. <hr>
  8. <hr>
  9. <Demo2></Demo2>
  10. <hr>
  11. <hr>
  12. <Demo3></Demo3>
  13. </div>
  14. </template>
  15. <script setup>
  16. import Demo1 from './components/Demo1.vue'
  17. import Demo2 from './components/Demo2.vue'
  18. import Demo3 from './components/Demo3.vue'
  19. </script>
  20. <style lang="scss" scoped>
  21. </style>