vue router
export default new Router({
mode: 'history',
routes: [
{
path: '/',
name: 'HelloWorld',
component: HelloWorld
},
{
path: '*',
name: 'NotFound',
component: NotFound
},
{
path: '/uuu',
name: 'uuu',
component: uuu,
children: [{
path: 'login',
name: 'login',
component: login
}]
}
]
})
页面:
<div class="login">
<h1>{{ msg }}</h1>
<h2>login2</h2>
<router-link to="/uuu/login">login </router-link>
<router-view/>
</div>
不写router-view 会没数据显示出来