Following the Ant Design specification, we developed a Vue UI library antd
that contains a set of high quality components and demos for building rich, interactive user interfaces.
- An enterprise-class UI design language for web applications.
- A set of high-quality Vue components out of the box.
- Shared Ant Design of React design resources.
![]() Edge |
![]() Firefox |
![]() Chrome |
![]() Safari |
![]() Opera |
![]() Electron |
---|---|---|---|---|---|
Edge | last 2 versions | last 2 versions | last 2 versions | last 2 versions | last 2 versions |
You can subscribe to this feed for new version notifications: https://github.com/vueComponent/ant-design-vue/releases.atom
We recommend using npm or yarn to install,it not only makes development easier,but also allow you to take advantage of the rich ecosystem of Javascript packages and tooling.
$ npm install [email protected] --save
$ yarn add [email protected]
If you are in a bad network environment,you can try other registries and tools like cnpm.
Add script
and link
tags in your browser and use the global variable antd
.
We provide antd.js
antd.min.js
and reset.css
under ant-design-vue/dist
in antd's npm package. You can also download these files directly from or unpkg.
We strongly discourage loading the entire files this will add bloat to your application and make it more difficult to receive bugfixes and updates. Antd is intended to be used in conjunction with a build tool, such as webpack, which will make it easy to import only the parts of antd that you are using.
Note: you should import
vue
, dayjs and dayjs plugins before usingantd.js
.
Like:
<script src="https://unpkg.com/dayjs/dayjs.min.js"></script>
<script src="https://unpkg.com/dayjs/plugin/customParseFormat.js"></script>
<script src="https://unpkg.com/dayjs/plugin/weekday.js"></script>
<script src="https://unpkg.com/dayjs/plugin/localeData.js"></script>
<script src="https://unpkg.com/dayjs/plugin/weekOfYear.js"></script>
<script src="https://unpkg.com/dayjs/plugin/weekYear.js"></script>
<script src="https://unpkg.com/dayjs/plugin/advancedFormat.js"></script>
<script src="https://unpkg.com/dayjs/plugin/quarterOfYear.js"></script>
import { DatePicker } from 'ant-design-vue';
app.use(DatePicker);
And import stylesheets manually:
import 'ant-design-vue/dist/reset.css';
ant-design-vue
supports ES modules tree shaking by default.
If you're using 'Vite', we recommend using 'unplugin-vue-components'
$ npm install unplugin-vue-components -D
// vite.config.js
import { defineConfig } from 'vite';
import Components from 'unplugin-vue-components/vite';
import { AntDesignVueResolver } from 'unplugin-vue-components/resolvers';
export default defineConfig({
plugins: [
// ...
Components({
resolvers: [
AntDesignVueResolver({
importStyle: false, // css in js
}),
],
}),
],
});
You can then import 'ant-design-vue' components directly in your code, and the plugin will automatically convert your code to 'import {Button} from 'ant-design-vue''.
import { Button } from 'ant-design-vue';
- Home Page
- Ant Design Of React
- Components
- Change Log
- CodeSandbox template for bug reports
- Customize Theme
- FAQ
- Support US
- Awesome Ant Design
If you'd like to help us improve ant-design-vue, just create a Pull Request. Feel free to report bugs and issues here.
If you're new to posting issues, we ask that you read How To Ask Questions The Smart Way and How to Ask a Question in Open Source Community and How to Report Bugs Effectively prior to posting. Well written bug reports help us help you!
As we all know, Ant Design, as a design language, has gone through many years of iteration and accumulation. Its UI design ideas have become a set of de facto standards and are sought after and loved by many front-end developers and enterprises, and it is also a magic weapon in the hands of React developers. I hope that ant-design-vue will allow Vue developers to enjoy the excellent design of Ant Design.
The ant-design-vue is the Vue implementation of Ant Design. The style of the component is kept in sync with Ant Design. The html structure and css style of the component are also consistent. The style 0 modification is really achieved, and the component API is kept as consistent as possible.
Ant Design Vue is committed to providing programmers with a pleasant development experience.