0
基於內容部分組件修改側邊欄組件這是我的模板部分:在Vue公司
<template>
<!-- START Home.vue section -->
<div class="container-fluid" v-if="user.authenticated">
<!-- START Sidebar.vue section -->
<sidebar-component></sidebar-component>
<!-- END Sidebar.vue section -->
<div class="main-container">
<!-- START Nav.vue section -->
<nav-component></nav-component>
<!-- END Nav.vue section -->
<!-- START Content Section -->
<router-view></router-view>
<!-- END Content Section -->
</div>
</div>
<!-- END Home.vue section -->
</template>
顯然,有3個部分組成:NavComponent,SidebarComponent,將由路由組件更換主要部件區域。
我有另一個組件ApplicationList
組件,當將替換上述模板的router-view
部分,應該會導致側欄組件行爲不同(例如側欄變爲隱藏或其背景變爲紅色)。
那我該怎麼做呢?
在你的路由器視圖中,你將根據你所在的路徑放置不同的組件,因此對於每個你希望側欄以不同方式顯示的組件,,,,,就是你想要的 –