餐饮油烟智能监测与监管一体化平台
feiyu02
6 天以前 ccc970e575ef3f3e5c67af8da210263f4ac549f9
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 '@/style/layout'
 
export default {
  data() {
    return {
      cols: formResponsiveCols(),
    }
  },
}
</script>
<style scoped></style>