App.vue 720 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. },
  12. watch: {},
  13. created() {},
  14. methods: {},
  15. computed: {},
  16. };
  17. </script>
  18. <style lang="scss">
  19. #app {
  20. width: 100%;
  21. height: 100%;
  22. overflow: hidden;
  23. }
  24. .avue--detail .el-col {
  25. margin-bottom: 0;
  26. }
  27. .boxswai {
  28. box-sizing: border-box;
  29. padding: 0px 14px 10px 14px;
  30. width: 100%;
  31. height: 100%;
  32. color: #303133;
  33. .boxnei {
  34. box-sizing: border-box;
  35. width: 100%;
  36. height: 100%;
  37. background-color: #fff;
  38. padding: 14px;
  39. border: 1px solid #ebeef5;
  40. border-radius: 4px;
  41. box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.2);
  42. overflow: auto;
  43. }
  44. }
  45. </style>