VueJS - 是否可以为转换组

时间:2017-08-01 06:35:23

标签: javascript vuejs2

我有一个表,根据列表中的项目数量动态显示行。当一个项目被添加到列表中时,表格行被动画化(带有绿色背景)以显示正在添加的新行,当我从列表中删除项目时,表格行被动画化(带有红色背景)到显示它正在被删除。当没有更多项目时,我会显示一行There are no more items in the list消息。

我的问题是当列表中没有剩余项目时,列表为空时显示的表格行,使用上面提到的绿色背景进行动画处理,并且当项目时相同被添加到列表中(从空),该行以红色背景动画

我的问题:是否可以忽略<transition-group>下的单个元素动画?

HTML:

<table class="table table-striped" id="item-table">
    <thead>
        <tr>
            <th>Item</th>
            <th>Description</th>
        </tr>
    </thead>
    <tbody name="fade" is="transition-group">
        <tr v-for="(item, index) in items" :key="item.id">
            <td>
                {{ item.name }}
            </td>
            <td class="text-center">
                <button class="btn btn-primary" @click.prevent="removeItem(index, item.id)"><i class="fa fa-check"></i></button>
            </td>
        </tr>
        <tr v-if="items.length == 0" class="text-center" key="noItems">
            <td colspan="2">There are no more items in the list</td>
        </tr>
    </tbody>
</table>

CSS:

.fade-enter-active {
    transition: opacity 1.5s;
    background-color: #a1ec8e !important;
}

.fade-leave-active {
    transition: opacity 1.5s;
    background-color: tomato !important;
}

.fade-enter, .fade-leave-to {
    opacity: 0
}

JS:

const App = new Vue({
    el: "#app",

    data() {
        return {
            items: [],
        }
    },

    methods: {
        addItem(item) {
            this.items.push(item);
        },

        removeItem(index) {
            this.items.splice(index, 1);
        }
    }
});

1 个答案:

答案 0 :(得分:2)

从你的CSS中删除!important。没有它,您可以用以下内容覆盖行的样式:

info: NameSpaceName.ClassName[eventId] Action is started.

转换组只是在子元素上添加或删除类,但动画样式仅由css控制。