我一直在使用“element-ui”,现在正在使用新版本的 Vue3。似乎他们发布了一个名为“element-plus”的新版本,但教程没有更新。
import Vue from 'vue'; // not working in Vue3
import ElementUI from 'element-plus';
import 'element-ui/lib/theme-chalk/index.css';
...
Vue.use(ElementUI); // no "Vue" in Vue3 anymore
...
createApp(App).mount('#app') // the new project creation
https://element-plus.org/#/en-US/component/quickstart
任何人都设法做对并且有效吗?