UNPKG

fast-element-ui

Version:

Vue项目快速开发组件框架,使用element-ui为基础库二次封装构建。

18 lines (17 loc) 313 B
/** * search 面板 */ const FastGridSearch = { name: 'FastGridSearch', inject: ['getFastGrid'], render (h) { return h( 'div', { style: 'height: 100%;' }, [this.$slots.default, this.$scopedSlots.searchScope()] ) } } export default FastGridSearch