UNPKG

fast-element-ui

Version:

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

19 lines (18 loc) 321 B
/** * 工具栏 * 默认位于查询栏下方 */ const FastTBar = { name: 'FastTBar', inject: ['getFastGrid'], render (h) { return h( 'div', { style: 'height: 100%;' }, [this.$slots.default, this.$scopedSlots.tbarScope()] ) } } export default FastTBar