(九)路由路径的修改和404页面

2018-02-17  本文已影响0人  我拥抱着我的未来

本节知识点

路径去掉#

export default new Router({
  mode:"history",  //要是换成hash则又回到原位
  routes: [
    {
      path: '/',
      name: 'HelloWorld',
      components: {
        default: HelloWorld,
        left: Hi1,
        right: Hi2,
      }
    },
    {
      path:'/Hi/:username/:id',
      name:"Hi",
      component:Hi,
      children:[

        {path:"hi1",name:"Hi1",component:Hi1},
        {path:"hi2",name:"Hi2",component:Hi2},
      ]
    }
  ]
})

404页面的设置

<template>
  <div>
    <div class="text1">
      {{message1}}
    </div>
  </div>
</template>

<script type="text/ecmascript-6">
    export default {
      name:"Hi1",
      data(){
        return {
          message1:"这个就是Hi1页面"
        }
      }
    }
</script>

<style scoped>
  .text1{
    font-size:46px;
    color:red;
  }
</style>

{
  path:'*',
 component:Error
}

这样就配置好了

上一篇下一篇

猜你喜欢

热点阅读