App.vue 224 B

123456789101112131415161718192021
  1. <template>
  2. <div>
  3. <index></index>
  4. </div>
  5. </template>
  6. <script>
  7. import index from '../src/views/index.vue'
  8. export default {
  9. components:{index},
  10. data(){
  11. return{
  12. }
  13. },
  14. }
  15. </script>
  16. <style scoped>
  17. </style>