123456789101112131415161718192021222324252627282930313233 |
- <template>
- <div id="app">
- <el-row>
- <main-layout></main-layout>
- </el-row>
- </div>
- </template>
- <script>
- import mainLayout from '@/layout/main-layout.vue';
- export default {
- name: 'app',
- components: {
- mainLayout,
- },
- data: () => ({}),
- };
- </script>
- <style lang="less">
- html {
- overflow-x: hidden;
- overflow-y: auto;
- }
- body {
- margin: 0;
- overflow-x: hidden;
- }
- .textOver {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- </style>
|