any-grid-layout
Version:
This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
43 lines (42 loc) • 815 B
JavaScript
export const layoutConfig = [
{
px: 1920,
keep: ['col', 'size', 'margin'],
col: 12,
size: [80, 80],
margin: [10, 10],
// data:[]
},
{
px: 1200,
keep: ['col', 'size', 'margin'],
col: 10,
size: [80, 80],
margin: [10, 10],
// data:[]
},
{
px: 992,
keep: ['col', 'size', 'margin'],
col: 8,
size: [80, 80],
margin: [10, 10],
// data:[]
},
{
px: 768,
keep: ['col', 'size', 'margin'],
col: 6,
size: [80, 80],
margin: [10, 10],
// data:[]
},
{
px: 480,
keep: ['col', 'size', 'margin'],
col: 4,
size: [80, 80],
margin: [10, 10],
// data:[]
}
]