1. 創建Vue項目
確保已安裝Vue CLI,通過命令創建新項目:
vue create ant - vue - project
cd ant - vue - project
2. 安裝Ant Design Vue
使用npm或yarn安裝Ant Design Vue組件庫:
npm install ant - design - vue
# 或
yarn add ant - design - vue
3. 引入Ant Design Vue
全局引入:在 main.js 中引入Ant Design Vue及其樣式。
import Vue from 'vue';
import Antd from 'ant - design - vue';
import 'ant - design - vue/dist/antd.css';
import App from './App.vue';
Vue.use(Antd);
new Vue({
render: h => h(App),
}).$mount('#app');
按需引入:借助 babel - plugin - import 實現按需引入。
安裝插件:
npm install babel - plugin - import - D
# 或
yarn add babel - plugin - import - D
修改 babel.config.js 文件:
module.exports = function (api) {
api.cache(true);
const presets = [
'@vue/cli - babel/preset - app'
];
const plugins = [
['import', {
libraryName: 'ant - design - vue',
libraryDirectory: 'es',
style: 'css'
}]
];
return { presets, plugins };
};
在組件中按需引入,如在 HelloWorld.vue 中:
<template>
<div>
<a - button type="primary"> 主要按鈕 </a - button>
</div>
</template>
<script>
import { Button } from 'ant - design - vue';
export default {
components: {
'a - button': Button
}
};
</script>
4. 使用Ant Design Vue組件
以按鈕組件為例,在模板中可這樣使用:
<template>
<div id="app">
<a - button type="primary"> 主要按鈕 </a - button>
<a - button> 普通按鈕 </a - button>
</div>
</template>
更多組件使用方法
參考Ant Design Vue 官方文檔:
(https://2x.antdv.com/docs/vue/introduce - cn) 。
閱讀原文:原文鏈接
該文章在 2024/12/30 16:18:36 編輯過