docs: update import path (#10007)

This commit is contained in:
neverland 2021-12-07 15:15:29 +08:00 committed by GitHub
parent df9eb68dbe
commit 0b57718b6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -152,7 +152,7 @@ export default {
{ {
libraryName: 'vant', libraryName: 'vant',
esModule: true, esModule: true,
resolveStyle: (name) => `vant/es/${name}/style`, resolveStyle: (name) => `vant/es/${name}/style/index`,
}, },
], ],
}), }),
@ -163,8 +163,8 @@ export default {
### 3. Manually import ### 3. Manually import
```js ```js
import Button from 'vant/es/button'; import Button from 'vant/es/button/index';
import 'vant/es/button/style'; import 'vant/es/button/style/index';
``` ```
### 4. Import all components ### 4. Import all components

View File

@ -172,7 +172,7 @@ export default {
{ {
libraryName: 'vant', libraryName: 'vant',
esModule: true, esModule: true,
resolveStyle: (name) => `vant/es/${name}/style`, resolveStyle: (name) => `vant/es/${name}/style/index`,
}, },
], ],
}), }),
@ -186,9 +186,9 @@ export default {
```js ```js
// 引入组件 // 引入组件
import Button from 'vant/es/button'; import Button from 'vant/es/button/index';
// 引入组件对应的样式,若组件没有样式文件,则无须引入 // 引入组件对应的样式,若组件没有样式文件,则无须引入
import 'vant/es/button/style'; import 'vant/es/button/style/index';
``` ```
### 方式四. 导入所有组件 ### 方式四. 导入所有组件