App.vue 275 B

12345678910111213141516171819202122
  1. <template>
  2. <div class="layout" id="ctrl">
  3. <router-view class="view" />
  4. </div>
  5. </template>
  6. <script>
  7. import '@/assets/style/index.css'
  8. export default {
  9. name: 'app'
  10. }
  11. </script>
  12. <style>
  13. html, body {
  14. height: 100%;
  15. }
  16. .layout {
  17. height: 100%;
  18. }
  19. </style>