View 视图容器
示例代码
<se-view class="se-view" hover-class="hover-class" :hover-stop-propagation="true"></se-view>
<style>
.se-view {
width: 40px;
height: 40px;
background-color: #fe9500;
}
.hover-class {
background-color: #01d567;
}
</style>
Props
属性 | 类型 | 默认值 | 必填 | 描述 |
---|---|---|---|---|
hover-class | string | none | false | 指定按下去的样式类,当 hoverClass 没定义时,没有点击状态效果 |
hover-stop-propagation | boolean | false | false | 指定是否阻止本节点的祖先节点出现点击态 |
hover-start-time | number | 50 | false | 按住鼠标后多久出现点击态,单位毫秒 |
hover-stay-time | number | 500 | false | 鼠标移开后点击态保留时间,单位毫秒 |