根据索引 index 访问组件
为了避免性能上的消耗,使用浅响应 shallowRef 创建组件对象数组
浅响应 shallowRef 创建一个浅响应式对象,数据的深层改变不会触发视图更新,减少性能上的消耗;并不对其中的数据进行响应,仅仅对对象的名字响应
需要使用标签和组件封装数组
import { ref, shallowRef } from 'vue'
import AsyncGoods from '@/components/TabGoods.vue'
import AsyncCup from '@/components/TabCup.vue'
let index = ref(0)
let com = shallowRef([{
tag: '随享瑞幸',
component: AsyncGoods
}, {
tag: '颜值水杯',
component: AsyncCup
}])
<span v-for="(item, ind) in com" @click="index = ind">{{ item.tag }}</span>
<component :is="com[index].component"></component>