当前位置:   article > 正文

ant design vue 基础_ant-design-vue

ant-design-vue

官网:

https://www.antdv.com/components/drawer-cn/

1什么是ant-design-vue?

Ant Design是蚂蚁金服技术部经过大量项目时间和总结,设计的前端UI组件库
Ant Design Vue 是使用 Vue 实现的遵循 Ant Design 设计规范的高质量 UI 组件库,用于开发和服务于企业级中后台产品

2 ant-design-vue作用?

ant-design-pro-vue:使用 vue+ant-design-vue 开发的项目

*用于开发和服务与企业后台产品

3.如何使用

  1. # 1.安装
  2. cnpm install ant-design-vue --save
  3. # 2.main.js中全局引入并注册
  4. import Vue from 'vue'
  5. import App from './App'
  6. import Antd from 'ant-design-vue'
  7. import router from './router'
  8. import 'ant-design-vue/dist/antd.css'
  9. Vue.config.productionTip = false
  10. Vue.use(Antd)
  11. /* eslint-disable no-new */
  12. new Vue({
  13. el: '#app',
  14. router,
  15. components: { App },
  16. template: '<App/>'
  17. })
  18. # 3.在页面中不再需要引入注册组件,可以直接使用所有的组件
  19. <template>
  20. <div>
  21. <a-button type="primary">
  22. Primary
  23. </a-button>
  24. <a-button>Defa
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/475148
推荐阅读
相关标签
  

闽ICP备14008679号