Vue3+Element Plus

来自泡泡学习笔记
BrainBs讨论 | 贡献2024年2月8日 (四) 09:22的版本 (创建页面,内容为“ <span id="安装vue3"></span> == 安装Vue3 == <syntaxhighlight lang="shell">$ npm create vue@latest $ cd <your-project-name> $ npm install $ npm run dev</syntaxhighlight> <br> <span id="安装element-plus"></span> == 安装Element Plus == <syntaxhighlight lang="shell">$ npm install element-plus --save</syntaxhighlight> <br> <span id="vue3引入element-plus"></span> == Vue3引入Element Plus == <syntaxhighlight lang="js">// main.js import { createApp } fr…”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳到导航 跳到搜索

安装Vue3

$ npm create vue@latest
$ cd <your-project-name>
$ npm install
$ npm run dev


安装Element Plus

$ npm install element-plus --save


Vue3引入Element Plus

// main.js
import { createApp } from 'vue'
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'
import App from './App.vue'

const app = createApp(App)

app.use(ElementPlus)
app.mount('#app')