1 Star 0 Fork 1

nickyou/spread-js-table

forked from sunxuedong/spread-js-table 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.js 976 Bytes
一键复制 编辑 原始数据 按行查看 历史
sunxuedong0218 提交于 2020-11-16 14:43 . first commit
import SpreadJsTable from './src/components/SpreadJsTable'
import globalVariable from '@/utils/globalVariable'
import packageJSON from './package'
const components = [
SpreadJsTable
]
const install = function(Vue, opts = {}) {
const { GC, ExcelIO } = opts
if (ExcelIO) {
globalVariable.ExcelIO = ExcelIO
}
if (GC) {
globalVariable.GC = GC
}
components.forEach(component => {
Vue.component(component.name, component);
});
}
/* istanbul ignore if */
if (typeof window !== 'undefined' && window.Vue) {
install(window.Vue, {
GC,
ExcelIO: GC.Spread.Excel
});
}
components.forEach(component => {
component.install = function (Vue, opts = {}){
const { GC, ExcelIO } = opts
if (ExcelIO) {
globalVariable.ExcelIO = ExcelIO
}
if (GC) {
globalVariable.GC = GC
}
Vue.component(component.name, component)
}
})
export default {
version: packageJSON.version,
install,
SpreadJsTable
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/nickyou/spread-js-table.git
git@gitee.com:nickyou/spread-js-table.git
nickyou
spread-js-table
spread-js-table
master

搜索帮助