当前位置:   article > 正文

基于Vue3 + Element Plus 的通用后台管理系统_vue3 + javascript + elementplus后台框架

vue3 + javascript + elementplus后台框架

通用型后台管理模板,界面美观、适用于各种类型的后台应用;

采用 Vue3、Elementplus、Vite、Pinia、Sass最新技术栈;系统已包含后台管理系统常用的功能;并有丰富的模板案例和页面展示。

使用Vue3,elementplus编写, 组合式API、注释详细,源码易于阅读。不预留任何后门代码,请放心使用。

系统采用响应式布局设计,可在多端部署运行、系统支持主流浏览器。

1、创建项目

npm init vue@latest

2、安装 Element Plus

npm i element-plus -S

3、在main.js中添加应用

  1. import { createApp } from 'vue'
  2. import { createPinia } from 'pinia'
  3. import App from './App.vue'
  4. import router from './router'
  5. import '@/assets/css/base.scss' // 全局样式
  6. import * as ElementPlusIconsVue from '@element-plus/icons-vue' // 导入 element-plus 图标库
  7. const app = createApp(App)
  8. // 注册 element-plus 图标库
  9. for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
  10. app.component(key, component)
  11. }
  12. app.use(createPinia())
  13. app.use(router)
  14. app.use(i18n)
  15. app.use(permission)
  16. app.use(watermark)
  17. app.use(ellipsis)
  18. app.mount('#app')

4、在项目中使用组件

  1. <template>
  2. <div>
  3. <el-button type="primary">Button</el-button>
  4. </div>
  5. </template>

5、创建路由文件

  1. import { createRouter, createWebHistory } from 'vue-router'
  2. import AppLayout from '../views/layout/AppLayout.vue'
  3. const routes = [
  4. {
  5. path: '/',
  6. name: 'home',
  7. meta: {
  8. title: '首页',
  9. requiresAuth: true // 需要token验证
  10. },
  11. component: AppLayout,
  12. redirect: '/dashboard/workplace',
  13. children: []
  14. },
  15. {
  16. // 系统登录页
  17. path: '/login',
  18. name: 'login',
  19. component: () => import('../views/login/LoginView.vue')
  20. }
  21. ]
  22. const router = createRouter({
  23. history: createWebHistory(import.meta.env.BASE_URL),
  24. routes
  25. })
  26. // 全局路由守卫
  27. router.beforeEach((to, from, next) => {
  28. if (to.matched.some((item) => item.meta?.requiresAuth)) {
  29. const store = useTokenStore()
  30. if (!store.token?.access_token) {
  31. next({ name: 'login', query: { redirect: to.fullPath } })
  32. return
  33. }
  34. }
  35. })
  36. export default router

项目演示地址:http://demo.eleadmin.cn/login

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/646766
推荐阅读
相关标签
  

闽ICP备14008679号