<template>
|
|
<view :class="customClass" :hover-class="hoverClass" :hover-stop-propagation="hoverStopPropagation" :hover-start-time="hoverStartTime" :hover-stay-time="hoverStayTime" @click.stop="handleClick">
|
|
<slot />
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name:"com-view",
|
|
props: {
|
|
hoverClass: {
|
|
type: String,
|
|
default: 'hover-class'
|
|
},
|
|
customClass: {
|
|
type: String,
|
|
},
|
|
hoverStopPropagation: {
|
|
type: String,
|
|
},
|
|
hoverStartTime: {
|
|
type: String | Number,
|
|
default: 50
|
|
},
|
|
hoverStayTime: {
|
|
type: String | Number,
|
|
default: 120
|
|
},
|
|
},
|
|
methods: {
|
|
handleClick () {
|
|
this.$emit('click')
|
|
}
|
|
}
|
|
}
|
|
</script>
|