Treecat
2 years ago
9 changed files with 3804 additions and 3470 deletions
@ -1,4 +1,14 @@
|
||||
import * as fineui from "./index"; |
||||
import { shortcut, provider } from "@/core/5.inject"; |
||||
import { _global } from "@/core/0.foundation"; |
||||
import * as Decorators from "@/core/decorator"; |
||||
|
||||
Object.assign(BI, fineui, { shortcut, provider }); |
||||
_global.BI = _global.BI || {}; |
||||
_global.BI.Decorators = Decorators; |
||||
|
||||
_global.Fix = fineui.Fix; |
||||
_global._ = fineui._; |
||||
|
||||
_global.$ = fineui.$; |
||||
|
||||
Object.assign(_global.BI, fineui, { shortcut, provider }); |
||||
|
@ -1,8 +1,13 @@
|
||||
import "./polyfill"; |
||||
import _jquery from "jquery"; |
||||
|
||||
export * from "./core"; |
||||
export * from "./base"; |
||||
export * from "./case"; |
||||
export * from "./widget"; |
||||
export * from "./component"; |
||||
|
||||
export * from "./fix"; |
||||
export * from "./router"; |
||||
|
||||
export const jQuery = _jquery; |
||||
export const $ = _jquery; |
||||
|
@ -1,2 +1,2 @@
|
||||
export * from "./0.router"; |
||||
export * from "./router"; |
||||
export * from "./router"; |
||||
|
Loading…
Reference in new issue