vue-flex-waterfall
A horizontal sorting waterfall layout component for Vue.js, realized by flex layout.
Installation
Usage
Vue project
Browser
Props
col
Type: Number
Default: 1
Default number of column. Use the break-at
prop to specify breakpoints for this value.
col-spacing
Type: Number | String
Default: 0
Column spacing. The unit is px when it is a number.
break-at
Type: Object
Default: null
This object allows you to specify how the number of columns will change based on the width of the viewport. Setting this option to { 900: 3 }
for example will adjust the number of columns to 3 when the viewport change and is <= 900px.
break-by-container
Type: Boolean
Default: false
When enable, the breakpoints will be based on the container width instead of the window width.
Events
order-update
Will be emited after flex orders of slot elements are updated.
Tips
- You can set
margin-bottom
style for slot elements to control their vertical spacing. - You can set
align-content
style for vue-flex-waterfall component to control column alignment.