* chore(@vben/docs): 完成guide文档的翻译 * chore(@vben/docs): 完成other文档的翻译 * chore: 翻译部分文档 * chore: 完成英文config的配置 * chore: 完成in-depth的文档翻译 * chore: 调整调整链接 * chore: typo * chore: typo * chore: update links --------- Co-authored-by: Li Kui <90845831+likui628@users.noreply.github.com>
59 lines
1.3 KiB
Markdown
59 lines
1.3 KiB
Markdown
# External Modules
|
|
|
|
In addition to the external modules that are included by default in the project, sometimes we need to import other external modules. Let's take [ant-design-vue](https://antdv.com/components/overview) as an example:
|
|
|
|
## Installing Dependencies
|
|
|
|
::: tip Install dependencies into a specific package
|
|
|
|
- Since the project uses [pnpm](https://pnpm.io/) as the package management tool, we need to use the `pnpm` command to install dependencies.
|
|
- As the project is managed using a Monorepo module, we need to install dependencies under a specific package. Please make sure you have entered the specific package directory before installing dependencies.
|
|
|
|
:::
|
|
|
|
```bash
|
|
# cd /path/to/your/package
|
|
pnpm add ant-design-vue
|
|
```
|
|
|
|
## Usage
|
|
|
|
### Global Import
|
|
|
|
```ts
|
|
import { createApp } from 'vue';
|
|
import Antd from 'ant-design-vue';
|
|
import App from './App';
|
|
import 'ant-design-vue/dist/reset.css';
|
|
|
|
const app = createApp(App);
|
|
|
|
app.use(Antd).mount('#app');
|
|
```
|
|
|
|
#### Usage
|
|
|
|
```vue
|
|
<template>
|
|
<a-button>text</a-button>
|
|
</template>
|
|
```
|
|
|
|
### Partial Import
|
|
|
|
```vue
|
|
<script setup lang="ts">
|
|
import { Button } from 'ant-design-vue';
|
|
</script>
|
|
|
|
<template>
|
|
<Button>text</Button>
|
|
</template>
|
|
```
|
|
|
|
::: warning Note
|
|
|
|
- If the component depends on styles, you also need to import the style file.
|
|
|
|
:::
|