1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| <template>
| <el-row :gutter="16">
| <el-col :span="16">
| <CompPreCheck></CompPreCheck>
| </el-col>
| <el-col :span="8">
| <div class="radius"></div>
| </el-col>
| </el-row>
| </template>
|
| <script>
| import CompPreCheck from "./components/CompPreCheck.vue";
| export default {
| name: 'DataSource',
| components: { CompPreCheck },
| data() {
| return {};
| }
| };
| </script>
| <style scoped>
| .radius {
| height: 80vh;
| border: 1px solid var(--el-border-color);
| border-radius: var(--el-border-radius-base);
| }
| </style>
|
|