App.vue 432 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <div id="app">
  3. <router-view/>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'App',
  9. data() {
  10. return {
  11. isCollapse: true
  12. };
  13. },
  14. methods: {
  15. handleOpen(key, keyPath) {
  16. console.log(key, keyPath);
  17. },
  18. handleClose(key, keyPath) {
  19. console.log(key, keyPath);
  20. }
  21. }
  22. }
  23. </script>
  24. <style>
  25. #app {
  26. width: 100%;
  27. height: 100%;
  28. }
  29. </style>