App.vue 557 B

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