mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 05:42:44 +08:00
docs: add nuxt 3 guide (#10977)
This commit is contained in:
parent
8d15fa4fdf
commit
95542bf06e
@ -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.
|
> 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)
|
||||||
|
@ -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)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user