@breakpoint-changed="breakpointChangedEvent"
:breakpoints="{ lg: 1200, md: 996, sm: 768, xs: 480, xxs: 0 }"
:cols="{ lg: 12, md: 12, sm: 12, xs: 2, xxs: 2 }"
breakpointChangedEvent: function (newBreakpoint, newLayout) {
console.log(
'BREAKPOINT CHANGED breakpoint=',
newBreakpoint,
', layout: ',
newLayout
)
},
最后编辑:2021年08月30日
©著作权归作者所有
这个事件不生效是为什么呢?