App.vue 526 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <viewIndex/>
  3. </template>
  4. <script setup>
  5. //import viewIndex from './view/myDemo.vue'
  6. import viewIndex from './view/myIndex.vue'
  7. // import HelloWorld from './components/HelloWorld.vue'
  8. // export default {
  9. // name: 'App',
  10. // // components: {
  11. // // viewIndex
  12. // // }
  13. // }
  14. </script>
  15. <style>
  16. #app {
  17. font-family: Avenir, Helvetica, Arial, sans-serif;
  18. -webkit-font-smoothing: antialiased;
  19. -moz-osx-font-smoothing: grayscale;
  20. text-align: center;
  21. color: #2c3e50;
  22. margin: 0;
  23. padding: 0;
  24. }
  25. </style>