mirror of
https://github.com/xxxsf/vue3-h5-template.git
synced 2025-04-06 05:23:46 +08:00
add login page
This commit is contained in:
parent
b7f4a8d5bc
commit
cc3125026a
@ -4,7 +4,9 @@
|
|||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"extract-text-webpack-plugin": "^0.8.2",
|
"extract-text-webpack-plugin": "^0.8.2",
|
||||||
"open-browser-webpack-plugin": "^0.0.2"
|
"mint-ui": "^0.2.7",
|
||||||
|
"open-browser-webpack-plugin": "^0.0.2",
|
||||||
|
"weui": "^0.4.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"babel-core": "^6.3.17",
|
"babel-core": "^6.3.17",
|
||||||
@ -20,7 +22,6 @@
|
|||||||
"html-webpack-plugin": "^1.6.2",
|
"html-webpack-plugin": "^1.6.2",
|
||||||
"jshint-loader": "^0.8.3",
|
"jshint-loader": "^0.8.3",
|
||||||
"style-loader": "^0.13.0",
|
"style-loader": "^0.13.0",
|
||||||
"swiper": "^3.2.0",
|
|
||||||
"url-loader": "^0.5.6",
|
"url-loader": "^0.5.6",
|
||||||
"vue": "^1.0.20",
|
"vue": "^1.0.20",
|
||||||
"vue-hot-reload-api": "^1.2.2",
|
"vue-hot-reload-api": "^1.2.2",
|
||||||
@ -43,4 +44,4 @@
|
|||||||
},
|
},
|
||||||
"author": "",
|
"author": "",
|
||||||
"license": "ISC"
|
"license": "ISC"
|
||||||
}
|
}
|
||||||
|
@ -29,6 +29,7 @@ module.exports = function(router){
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
window.routeList=[];
|
window.routeList=[];
|
||||||
|
|
||||||
router.beforeEach(function(transition){
|
router.beforeEach(function(transition){
|
||||||
@ -48,6 +49,7 @@ module.exports = function(router){
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//如果是中止,这里可以判断用户登录
|
//如果是中止,这里可以判断用户登录
|
||||||
//if(transition.to.path === '/forbidden'){
|
//if(transition.to.path === '/forbidden'){
|
||||||
if(transition.to.name == 'forbidden'){
|
if(transition.to.name == 'forbidden'){
|
||||||
|
15
src/views/login.vue
Normal file
15
src/views/login.vue
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
Login page
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
module.exports = {
|
||||||
|
data:function(){
|
||||||
|
return {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
Loading…
x
Reference in New Issue
Block a user