12345678910111213141516171819202122232425262728 |
- <template>
- <viewIndex/>
- </template>
- <script setup>
- import viewIndex from './view/appmian.vue'
- //import viewIndex from './view/index.vue'
- //import viewIndex from './view/myIndex.vue'
- //import viewIndex from './view/case.vue'
- // export default {
- // name: 'App',
- // // components: {
- // // viewIndex
- // // }
- // }
- </script>
- <style>
- #app {
- font-family: Avenir, Helvetica, Arial, sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- text-align: center;
- color: #2c3e50;
- margin: 0;
- padding: 0;
- }
- </style>
|