add login page

This commit is contained in:
xsf 2016-08-26 15:09:50 +08:00
parent b7f4a8d5bc
commit cc3125026a
3 changed files with 21 additions and 3 deletions

View File

@ -4,7 +4,9 @@
"main": "index.js",
"dependencies": {
"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": {
"babel-core": "^6.3.17",
@ -20,7 +22,6 @@
"html-webpack-plugin": "^1.6.2",
"jshint-loader": "^0.8.3",
"style-loader": "^0.13.0",
"swiper": "^3.2.0",
"url-loader": "^0.5.6",
"vue": "^1.0.20",
"vue-hot-reload-api": "^1.2.2",
@ -43,4 +44,4 @@
},
"author": "",
"license": "ISC"
}
}

View File

@ -29,6 +29,7 @@ module.exports = function(router){
},
});
window.routeList=[];
router.beforeEach(function(transition){
@ -48,6 +49,7 @@ module.exports = function(router){
}
//如果是中止,这里可以判断用户登录
//if(transition.to.path === '/forbidden'){
if(transition.to.name == 'forbidden'){

15
src/views/login.vue Normal file
View File

@ -0,0 +1,15 @@
<template>
<div>
Login page
</div>
</template>
<script>
module.exports = {
data:function(){
return {
}
}
};
</script>