1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| <template>
| <el-col :xs="cols.xs" :sm="cols.sm" :md="cols.md" :lg="cols.lg" :xl="cols.xl">
| <slot></slot>
| </el-col>
| </template>
|
| <script>
| import { formResponsiveCols } from '@/styles/element/layout';
|
| export default {
| data() {
| return {
| cols: formResponsiveCols(),
| };
| },
| };
| </script>
| <style scoped></style>
|
|