docs: add nuxt 3 guide (#10977)

This commit is contained in:
neverland 2022-08-27 13:48:59 +08:00 committed by GitHub
parent 8d15fa4fdf
commit 95542bf06e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 42 additions and 0 deletions

View File

@ -212,3 +212,24 @@ import 'vant/es/image-preview/style';
```
> Tip: "Full Import" and "On-demand Import" should not be used at the same time, otherwise it will lead to problems such as code duplication and style overrides.
## With Frameworks
### Use Vant in Nuxt 3
When using Vant in Nuxt 3, you should add `/vant/` to the `build.transpile`:
```ts
import { defineNuxtConfig } from 'nuxt';
export default defineNuxtConfig({
build: {
transpile: [/vant/],
},
});
```
Reference:
- [nuxt/framework#6761](https://github.com/nuxt/framework/issues/6761)
- [nuxt/framework#4084](https://github.com/nuxt/framework/issues/4084)

View File

@ -217,3 +217,24 @@ import 'vant/es/image-preview/style';
```
> 提示:在单个项目中不应该同时使用「全量引入」和「按需引入」,否则会导致代码重复、样式错乱等问题。
## 在框架中使用
### 在 Nuxt 3 中使用
在 Nuxt 3 中使用 Vant 时,由于 Nuxt 3 框架本身的限制,需要在 `nuxt.config.ts` 中添加以下配置:
```ts
import { defineNuxtConfig } from 'nuxt';
export default defineNuxtConfig({
build: {
transpile: [/vant/],
},
});
```
关于该问题的背景,可以参考以下 issue
- [nuxt/framework#6761](https://github.com/nuxt/framework/issues/6761)
- [nuxt/framework#4084](https://github.com/nuxt/framework/issues/4084)