Vue Webpack 引入外部依赖模块
# 引入外部模块
除了自带组件以外,有时我们还需要引入其他外部模块。我们以 ant-design-vue
为例:
# 安装
安装 ant-design-vue
# 在终端输入下面的命令完成安装
yarn add ant-design-vue
1
2
2
# 全局使用
import { createApp } from 'vue';
import App from './App.vue';
import Antd from 'ant-design-vue';
const app = createApp(App);
app.use(Antd);
app.mount('#app');
1
2
3
4
5
6
2
3
4
5
6
# 局部使用
<template>
<Button>text</Button>
</template>
<script>
import { defineComponent } from 'vue';
import { Button } from 'ant-design-vue';
export default defineComponent({
components: {
Button,
},
});
</script>
1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13
# 注意
- 如果组件有依赖样式,则需要再引入样式文件