vue router-view 의 내장 디 스 플레이 구현

경로 설정

const routes = [
  {
    path: '/',
    name: '  1',
    component: Home,
    children:[
      {
        path: '/customer',
        name: 'Customer',
        // route level code-splitting
        // this generates a separate chunk (about.[hash].js) for this route
        // which is lazy-loaded when the route is visited.
        component: () => import(/* webpackChunkName: "about" */ '../views/Customer.vue')
      },
      {
        path: '/pageOne',
        name: '  1',
        component: PageOne,

      },
      {
        path: '/pageTwo',
        name: '  2',
        component: PageTwo,
    },
    ]
  },
  {
    path: '/navigation',
    name: '  2',
    component: Home,
    children:[
      {
        path: '/pageThree',
        name: '  3',
        component: PageThree,

      },
      {
        path: '/pageFour',
        name: '  4',
        component: PageFour
      },
    ]
  },
2.vue 페이지 삽입
App.vue 첫 번 째 router-view 설정

// An highlighted block
 <router-view></router-view>
홈.vue 두 번 째 router-view 설정

// An highlighted block
<template>
  <div>
  <el-container style="height: 500px; border: 1px solid #eee">
    <el-aside width="200px" style="background-color: rgb(238, 241, 246)">

      <el-menu>
        <el-submenu v-for="(item,index) in $router.options.routes" :index="index+''">
        <template slot="title"><i class="el-icon-sell"></i>{{item.name}}</template>
          <el-menu-item v-for="(item2,index2) in item.children" :index="index+'-'+index2">{{item2.name}}</el-menu-item>
        </el-submenu>
      </el-menu>
    </el-aside>

    <el-container>
      <el-header style="text-align: right; font-size: 12px">
        <el-dropdown>
          <i class="el-icon-setting" style="margin-right: 15px"></i>
          <el-dropdown-menu slot="dropdown">
            <el-dropdown-item>  </el-dropdown-item>
            <el-dropdown-item>  </el-dropdown-item>
            <el-dropdown-item>  </el-dropdown-item>
          </el-dropdown-menu>
        </el-dropdown>
        <span>   </span>
      </el-header>

      <el-main>
        <router-view></router-view>

      </el-main>
    </el-container>

  </el-container>

</div>
</template>

<style>
.el-header {
  background-color: #B3C0D1;
  color: #333;
  line-height: 60px;
}

.el-aside {
  color: #333;
}
</style>

<script>
export default {

};
</script>
연결
우선http://localhost:8181/첫 번 째 router-view:Home.vue 에 들 어 갑 니 다.그리고 pageone 을 방문 할 때 Home.vue 와 함께 계속 방문 합 니 다.
router-view 의 내장 디 스 플레이 는 노반 의 내장 과 관련 이 있 기 때문에 경로 안에서 네 비게 이 션 1 의 경로 아래 각각 페이지 1 과 페이지 2 의 경로 임 을 알 수 있 습 니 다.따라서 페이지 1 pageone 에 접근 할 때 상위 경로 Home.vue 페이지 를 먼저 방문 합 니 다.홈.vue 페이지 에 router-view 를 설치 하지 않 으 면 하위 페이지 를 표시 할 수 없습니다.
vue router-view 의 내장 디 스 플레이 구현 에 관 한 이 글 은 여기까지 소개 되 었 습 니 다.더 많은 vue router-view 내장 디 스 플레이 내용 은 우리 의 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 찾 아 보 세 요.앞으로 많은 응원 바 랍 니 다!

좋은 웹페이지 즐겨찾기