Bootstrap

vue3:template中slot的使用规则

问:

<el-tabs :tab-position="'left'" style="height: 100%; " @tab-click="onTabClick">
    <el-tab-pane
        v-for="(item, index) in activities"
        :label="item.timestamp"
        :key="index">
        <span slot="label">
            <div style="display: flex; flex-direction: column; justify-content:center; height: 100%; text-align: left; margin-left: 25px;">
                <div style="font-size: 14px;">{ { item.timestamp }}</div>
                <div style=" font-size: 14px">{ { item.actionPeople }}</div>
                <div style=" font-size: 14px;">{ { item.actionNote }}</div>
            </div>
        </span>
    </el-tab-pane>
</el-tabs>这是我的类似代码,现在我写的span slot='label'slot下面有红色波浪线:slot attributes are deprecated

回答:

;