<template>
<view class="box2" hover-class="box2-active" hover-stop-propagation="">
<view class="box" hover-class="box-active" hover-stop-propagation="">我是一个大盒子</view>
</view>
</template>
style>
.box{
width:200px;
height:200px;
background:#333333;
}
.box-active{
background:#DD524D;
}
.box2{
width:300px;
height:300px;
background:#4CD964;
}
.box2-active{
background:#007AFF;
}
</style>