12345678910111213141516171819202122232425262728293031323334353637 |
- <template>
- <div id="app">
- <router-view></router-view>
- </div>
- </template>
- <script>
- export default{
- name: 'App',
- created () {
- },
- methods: {
- },
- }
- </script>
- <style lang="scss">
- //解决弹窗抖动
- // .dialog-shake{
- .el-dialog__wrapper {
- display: flex;
- justify-content: center;
- align-items: center;
- .el-dialog {
- display: flex;
- flex-direction: column;
- margin: 0 !important;
- max-height: calc(100% - 30px);
- max-width: calc(100% - 30px);
- .el-dialog__body {
- flex: 1;
- overflow: auto;
- }
- }
- }
- // }
- </style>
|