docs(auto-import-resolver): add Rspack usage (#12242)

This commit is contained in:
neverland 2023-09-03 09:40:26 +08:00 committed by GitHub
parent 80f600af93
commit 5ccaa836ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 33 additions and 1 deletions

View File

@ -76,6 +76,22 @@ module.exports = {
};
```
### Rspack
```ts
// rspack.config.js
import Components from 'unplugin-vue-components/rspack';
import { VantResolver } from '@vant/auto-import-resolver';
module.exports = {
plugins: [
Components({
resolvers: [VantResolver()],
}),
],
};
```
### Vue CLI
```ts

View File

@ -76,6 +76,22 @@ module.exports = {
};
```
### Rspack
```ts
// rspack.config.js
import Components from 'unplugin-vue-components/rspack';
import { VantResolver } from '@vant/auto-import-resolver';
module.exports = {
plugins: [
Components({
resolvers: [VantResolver()],
}),
],
};
```
### Vue CLI
```ts

View File

@ -1,7 +1,7 @@
{
"name": "@vant/auto-import-resolver",
"version": "1.0.0",
"description": "Vant auto import resolver base unplugin-vue-components",
"description": "Vant auto import resolver based on unplugin-vue-components",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.mjs",
"typings": "dist/index.d.ts",