vxe-table
Version:
一个基于 vue 的 PC 端表格组件,支持增删改查、虚拟滚动、懒加载、快捷菜单、数据校验、树形结构、打印导出、表单渲染、数据分页、虚拟列表、模态窗口、自定义模板、渲染器、贼灵活的配置项、扩展接口等...
30 lines (24 loc) • 404 B
JavaScript
/**
* 创建数据仓库
*/
class Store {
constructor () {
this.store = {}
}
mixin (map) {
Object.assign(this.store, map)
return Store
}
get (type) {
return this.store[type]
}
add (type, render) {
this.store[type] = render
return Store
}
delete (type) {
delete this.store[type]
return Store
}
}
export default Store