element-assits 0.0.38 → 0.0.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/lib/index.js +958 -932
- package/lib/style.scss +106 -106
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,8 +24,8 @@ Vue.use(ElementAssits)
|
|
|
24
24
|
```
|
|
25
25
|
使用:
|
|
26
26
|
默认全局注册了 `EaForm` `EaTable` `EaSelect` `EaModal` `EaPopover` 等组件
|
|
27
|
-
提供了 `uuid` `recursive`
|
|
28
|
-
Vue 原型上挂载了 `$asyncLoad`
|
|
27
|
+
提供了 `uuid` `recursive`, `asyncLoad`, `renderCell` 四个工具函数
|
|
28
|
+
Vue 原型上挂载了 `$asyncLoad` 方法(与asyncLoad相同)
|
|
29
29
|
> 如果单独引入 asyncLoad 方法,并且没有挂载在Vue原型上
|
|
30
30
|
> 那么,asyncLoad 方法载入的组件将游离在vueApp实例树之外
|
|
31
31
|
> 副作用是无法访问$parent,$router,$store等等
|