what should I do if I want to display a vue component in each page of tab in iview, and tab is dynamically rendered (in the form of a new tab in a browser window, but in a single-page application)?
<div>
<Tabs type="card" closable @on-tab-remove="tabRemove" v-model="activeIndex"
@tab-click="tabClick" v-if="options.length">
<TabPane v-for="(item, index) in options" :key="item.name" :label="item.name"
:name="item.route"></TabPane>
</Tabs>
</div>