博客列表 >vue的element应用

vue的element应用

kiraseo_wwwkiraercom
kiraseo_wwwkiraercom原创
2022年09月07日 12:21:30529浏览

安装前要首先安装好vue (具体教程看安装vue教程

使用yarn命令 来element

  1. yarn add element-plus

在vue项目中的main.js文件添加如下代码

  1. import { createApp } from 'vue'
  2. import App from './App.vue'
  3. import router from './router'
  4. import store from './store'
  5. //这是element 添加的必须要代码
  6. import ElementPlus from "element-plus";
  7. import "element-plus/dist/index.css";
  8. import * as ElementPlusIconsVue from "@element-plus/icons-vue";
  9. const app = createApp(App);
  10. for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
  11. app.component(key, component);
  12. }
  13. //.use(ElementPlus, { size: "small", zIndex: 3000 }) 这也是必须要写入,不然在使用elemenui会没有样式的 一定要添加
  14. createApp(App).use(store).use(router).use(ElementPlus, { size: "small", zIndex: 3000 }).mount('#app')

使用element安装后的效果-后台管理系统首页搭建

后台管理系统 列表页搭建



添加和编辑


声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议