我有一个名为customer-type
.
我确实有全年,我也有很多组件。所以我想减少渲染。
单击后如何加载组件renderComponent
?
<template v-for="(date, index) in daysOfYear">
<b-tr :key="date" :id="`row-${getDay(date)}`">
<customer-type :id="`customer-${index}`" @test="setCustomer" v-bind:listTypes="listTypes" />
<button @click="renderComponent(index)"> </button>
</b-tr>
</template>
methods: {
renderComponent(index) {
}
}
我不想在明确单击它之前渲染组件。