App.vue 724 B

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