<template>
<div>
<div :class="[isflag? 'boxone' : 'boxtwo']">测试1</div>
<button @click="isflag=!isflag">按钮</button>
</div>
</template>
<script>
export default {
data() {
return {
isflag:true,
};
},
};
</script>
<style lang="scss" scoped>
.boxone{
width: 200px;
height: 200px;
background-color: yellow;
}
.boxtwo{
width: 200px;
height: 200px;
background-color: red;
}
</style>
动态绑定样式(三元表达式 动态添加类)
最新推荐文章于 2022-10-16 23:21:26 发布