标签:code 网站 redirect === pat one 一个 中间 背景色
<template>
<!-- 由于做成了子路由,这个index做为了背景来使用,所以去掉了内容部分 -->
<div class="index">
<!-- 由于所有内容都是居中的,所以把颜色做成背景在index页 -->
<div class="topBg">
<!-- 为了解决背景色问题,颜色都放在index里了 -->
<div class="navbarBg"></div>
<Header></Header>
<router-view></router-view>把渲染放在了这里,这样子路由的内容就会在头和尾不变的中间内容层进行更新渲染
<bottom></bottom>
</div>
</div>
</template>
path: '/',
name: 'Index',
component: r => require.ensure([], () => r(require('@/index')), 'web_1'),
redirect: '/index1',=== 只要加上这句,rediect:后面的路径就是默认显示的子路由
children: [
{
path: '/index1',
// 真正的首页
component: r =>
require.ensure([], () => r(require('../index1.vue')), 'web_1')
},
标签:code 网站 redirect === pat one 一个 中间 背景色
原文地址:https://www.cnblogs.com/zly430/p/10847696.html