ControlApp.vue 292 B

123456789101112131415161718192021
  1. <style src="@/sass/global.scss" lang="scss"></style>
  2. <style scoped lang="scss">
  3. #app {
  4. width: 100%;
  5. height: 100%;
  6. }
  7. </style>
  8. <template>
  9. <div id="app">
  10. <router-view></router-view>
  11. </div>
  12. </template>
  13. <script>
  14. export default {
  15. name: 'ControlApp',
  16. components: {
  17. }
  18. }
  19. </script>