The use of Vue and ElementUI

  1. 下载elementui
    npm install --save element-ui

  2. 在main.js中引用element-ui
    Insert picture description hereimport ElementUI from ‘element-ui’
    import ‘element-ui/lib/theme-chalk/index.css’
    Vue.use(ElementUI)

  3. Take the form as an example here
    Insert picture description here

  4. operation result

Insert picture description here

Guess you like

Origin blog.csdn.net/weixin_44822939/article/details/113185796