uview-plus 3.4.74 → 3.4.75
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/changelog.md +3 -0
- package/components/u-icon/util.js +4 -1
- package/libs/config/config.js +3 -1
- package/package.json +1 -1
package/changelog.md
CHANGED
|
@@ -6,7 +6,10 @@ let params = {
|
|
|
6
6
|
// 加载字体方法
|
|
7
7
|
const loadFont = () => {
|
|
8
8
|
// console.log('加载字体图标');
|
|
9
|
-
|
|
9
|
+
// 全局加载不稳定,默认关闭,需要开启可以配置loadFontOnce。
|
|
10
|
+
if (config.loadFontOnce) {
|
|
11
|
+
params.loaded = true;
|
|
12
|
+
}
|
|
10
13
|
// #ifdef APP-NVUE
|
|
11
14
|
// nvue通过weex的dom模块引入字体,相关文档地址如下:
|
|
12
15
|
// https://weex.apache.org/zh/docs/modules/dom.html#addrule
|
package/libs/config/config.js
CHANGED
package/package.json
CHANGED