npm install element-ui -S //這個S是全域性
複製程式碼
2 在main.js中引入以下方法
import ElementUI from "element-ui"
Vue.use(ElementUI)//全域性使用ElementUI
import 'element-ui/lib/theme-chalk/index.css'
複製程式碼
這樣就可以全域性使用了 當然也可以引入其他的元件 這裡就暫時不寫
待更新
npm install element-ui -S //這個S是全域性
複製程式碼
2 在main.js中引入以下方法
import ElementUI from "element-ui"
Vue.use(ElementUI)//全域性使用ElementUI
import 'element-ui/lib/theme-chalk/index.css'
複製程式碼
這樣就可以全域性使用了 當然也可以引入其他的元件 這裡就暫時不寫
待更新