App.vue 189 B

1234567891011121314151617181920
  1. <template>
  2. <div id="app">
  3. <router-view></router-view>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'App',
  9. components:{
  10. }
  11. }
  12. </script>
  13. <style>
  14. #app {
  15. }
  16. </style>