You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- fix: form onValueChange validate time series problem [`0d8ea96`](https://github.com/ant-design/ant-design-mini/commit/0d8ea966341de9e9707ecf8b168483b31019ca2f)
- fix: form onValueChange validate time series problem [`d33653b`](https://github.com/ant-design/ant-design-mini/commit/d33653bdebf6b5da6e21da2713b117c3fdffc8dc)
693
+
- fix: form onValueChange validate time series problem [`eb5faed`](https://github.com/ant-design/ant-design-mini/commit/eb5faedd487c605679bd5591b5f477f32b0a7364)
694
+
- fix: form onValueChange validate time series problem [`8613b1e`](https://github.com/ant-design/ant-design-mini/commit/8613b1ee116ec23f4ce3bd919dc10f10cd0f23b0)
Copy file name to clipboardexpand all lines: docs/guide/faq.en.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ toc: true
7
7
8
8
### 3. Can x be used with 2.x, 1.x, 0.x
9
9
10
-
Because there is no migration cost to upgrade from 2.x, 1.x to 3.x, you can do it directly from 2.x, 1.x. upgrade to 3.x, under reference[Upgrade Guide](http://localhost:8000/guide/migration)。
10
+
Because there is no migration cost to upgrade from 2.x, 1.x to 3.x, you can do it directly from 2.x, 1.x. upgrade to 3.x, under reference[Upgrade Guide](https://mini.ant.design/guide/migration)。
Copy file name to clipboardexpand all lines: docs/guide/using-wechat.en.md
+24
Original file line number
Diff line number
Diff line change
@@ -54,6 +54,30 @@ Page({
54
54
});
55
55
```
56
56
57
+
## FAQ
58
+
59
+
1. The WeChat applet does not support setting default values and scope slots for slots, so the slot capability of components in the WeChat version is limited. Reference:[Slot Default Value Related Discussions](https://developers.weixin.qq.com/community/develop/doc/000a0e58acc32809d04cc948856c00)、[Scope Slot Related Discussions](https://developers.weixin.qq.com/community/develop/doc/00008c24ad42083cea899887851800)
60
+
61
+
```axml
62
+
<!-- 微信小程序本身不支持下面例子中这样的 给插槽设置默认值 -->
63
+
<slot>默认值</slot>
64
+
65
+
<!-- 微信小程序本身不支持下面例子中这样的 作用域插槽 -->
66
+
<slotitem="{{item}}"index="{{index}}"></slot>
67
+
```
68
+
69
+
2. After introducing the component, encounter `[WXML file compile error] undefined?`、 `[WXML file compile error] WXML file not found: ./xxx` Relevant report error. Remove the following configuration from app.json and try it.
70
+
71
+
```diff
72
+
{
73
+
"pages": [
74
+
"pages/index/index"
75
+
],
76
+
- "componentFramework": "glass-easel",
77
+
- "lazyCodeLoading": "requiredComponents
78
+
}
79
+
```
80
+
57
81
## List of adapted components
58
82
59
83
The following is a list of components that have been adapted to WeChat applets in the antd-mini. You can use these components directly in the project.
0 commit comments