【vue2.0】去掉前面#,window下nginx代理配置

时间:2017-01-20 16:12:10   收藏:0   阅读:1733

1、定义路由,设置路由配置

const routes = [
{
path: ‘/login‘,
component: require(‘./components/login/index.vue‘)
},
{
// = = = => /home
path: ‘/home‘,
component: Home
},
{
path: ‘/‘,
redirect: ‘/home‘
},
{
path: ‘*/*‘,
redirect: ‘/home‘
}
];

const router = new VueRouter({
routes,
mode: ‘history‘
});

var app = new Vue(
Vue.util.extend({router}, App)
).$mount(‘#app‘)

2、nginx代理配置

技术分享

 

 








 



 



 

原文:http://www.cnblogs.com/chcindy/p/6322733.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!