我有一个侧边栏组件,我想使用两次,但其中包含不同的其他组件。
我真的很想这样工作:
<template>
<Sidebar class="left-0">
<ExampleComponentA/>
</Sidebar>
<Content/>
<Sidebar class="right-0">
<ExampleComponentB/>
</Sidebar>
</template>
Vue有可能还是我真的需要一个SidebarLeft和一个SidebarRight组件?
<template>
<SidebarLeft class="left-0"/> <!-- <ExampleComponentA/> is in this Component -->
<Content/>
<SidebarRight class="right-0"/> <!-- <ExampleComponentB/> is in this Component -->
</template>
我为什么要那样做?
好吧,我的侧边栏的设置是相同的,只是content不同。所以我不需要复制洞边栏。
萧十郎
相关分类