# hk-mssh-admin **Repository Path**: hong-kai/hk-mssh-admin ## Basic Information - **Project Name**: hk-mssh-admin - **Description**: 配合 hk-mssh-java使用 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: dev2.x - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-09-01 - **Last Updated**: 2024-09-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # hk-mssh-ui #### Description element ui 的再封装组件 后台管理系统 ## 使用方法 ``` import HKMSSHUI from 'hk-mssh-ui' Vue.use(HKMSSHUI) ``` ## 提示 #### UI 组件依赖 element,使用时需要安装 element-ui - 为兼容 ie10 部分功能,使用的版本为 2.10.1, - 不考虑兼容 ie 的话,尽可能使用最新版 ``` npm install element-ui@2.10.1 ``` #### UI 组件使用到了一些外部 js, - "axios": 请求工具, - "crypto-js": 加密工具, ``` ``` #### UI 自带一套用户管理系统和权限管理系统 - 使用方法 ``` 在项目的 store 中 ,如果要是用组件的Layout,则必须引入layoutStore index.js 引入 import { layoutStore } from 'hk-mssh-ui' export default new Vuex.Store({ state: {}, mutations: {}, actions: {}, modules: { layoutStore }, getters }) ```