We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3cedcf commit b50475bCopy full SHA for b50475b
README.md
@@ -33,21 +33,21 @@ My new Nuxt module for doing amazing things.
33
34
```bash
35
# Using pnpm
36
-pnpm add -D my-module
+pnpm add -D @ant-design-vue/nuxt
37
38
# Using yarn
39
-yarn add --dev my-module
+yarn add --dev @ant-design-vue/nuxt
40
41
# Using npm
42
-npm install --save-dev my-module
+npm install --save-dev @ant-design-vue/nuxt
43
```
44
45
-2. Add `my-module` to the `modules` section of `nuxt.config.ts`
+2. Add `@ant-design-vue/nuxt` to the `modules` section of `nuxt.config.ts`
46
47
```js
48
export default defineNuxtConfig({
49
modules: [
50
- 'my-module'
+ '@ant-design-vue/nuxt'
51
]
52
})
53
0 commit comments