1、引入 Element,推荐完整引入,新手方便使用 在main.js 中写入以下内容: importVuefrom'vue'importAppfrom'./App.vue'+importElementUIfrom'element-ui';+import'element-ui/lib/theme-chalk/index.css';Vue.config.productionTip=false+Vue.use(ElementUI);newVue({render:h=>h(App),}).$mount('#app')...