0.1.54 • Published 3 years ago
jssk-frame v0.1.54
jssk-frame
数科框架后台管理页面,基于VUE CLI3脚手架项目;包含登录,修改密码,菜单及按钮权限。
独立运行
Project setup
npm install
Compiles and hot-reloads for development
npm run serve
Compiles and minifies for production
npm run build
Lints and fixes files
npm run lint
发布为npm包
npm run lib&&npm publish
被集成
Project setup
yarn add jssk-frame
集成方使用方法
创建VUE项目,在main.js里导入
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import routes from './router/routes'
import store from './store'
import jsskFrame from "jssk-frame"//本项目npm包
import "jssk-frame/lib/jssk-frame.css"
//因项目需要elementui,需导入
import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';
Vue.config.productionTip = false
Vue.use(ElementUI)
Vue.use(jsskFrame, { router, routes, store, baseUrl: "接口请求地址前缀" })
new Vue({
router,
store,
render: h => h(App)
}).$mount('#app')
routes说明
export default [
{
name: "xxxxx",
path: '/xxx/xxxx',
component: () => import( /* webpackChunkName: "xxxx" */ `@/views/xx/xxxx`),
meta: {
}
}
]
store导入模块
import jsskFrame from "jssk-frame";
export default new Vuex.Store({
modules: jsskFrame.storeModules
})
npm导出的模块
export default {
storeModules: modules//src/store/modules:用于vuex.Store
}
//src/components:VUE全局组件注册,不包含子目录
Customize configuration
0.1.52
3 years ago
0.1.53
3 years ago
0.1.54
3 years ago
0.1.50
3 years ago
0.1.51
3 years ago
0.1.49
3 years ago
0.1.43
3 years ago
0.1.44
3 years ago
0.1.45
3 years ago
0.1.46
3 years ago
0.1.47
3 years ago
0.1.48
3 years ago
0.1.36
3 years ago
0.1.37
3 years ago
0.1.41
3 years ago
0.1.42
3 years ago
0.1.40
3 years ago
0.1.38
3 years ago
0.1.39
3 years ago
0.1.35
3 years ago
0.1.34
3 years ago
0.1.33
3 years ago
0.1.32
3 years ago
0.1.30
3 years ago
0.1.29
3 years ago
0.1.28
3 years ago
0.1.27
3 years ago
0.1.25
3 years ago
0.1.24
3 years ago
0.1.23
3 years ago
0.1.22
3 years ago
0.1.21
3 years ago
0.1.20
3 years ago
0.1.19
3 years ago
0.1.18
3 years ago
0.1.17
3 years ago
0.1.16
3 years ago
0.1.15
3 years ago
0.1.14
3 years ago
0.1.13
3 years ago
0.1.12
3 years ago
0.1.11
3 years ago
0.1.10
3 years ago
0.1.9
3 years ago
0.1.8
3 years ago
0.1.7
3 years ago
0.1.6
3 years ago
0.1.5
3 years ago
0.1.4
3 years ago
0.1.3
3 years ago
0.1.2
3 years ago
0.1.1
3 years ago
0.1.0
3 years ago