App.vue 221 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. </script>
  12. <style lang="scss">
  13. html,
  14. body,
  15. #app {
  16. height: 100%;
  17. }
  18. </style>