<i class="el-icon-refresh" @mouseenter="showTip(true)" @mouseleave="showTip(false)"></i>
<span class="tip" v-if="istip">切换地图模式</span>
showTip: function(s) {
var me = this
if (s) {
// var t = setInterval(function() {
me.istip = true
// }, 100)
} else {
// clearInterval(t)
// debugger;
me.istip = false
}
},
<i class="el-icon-refresh" @mouseenter="showTip(true)" @mouseleave="showTip(false)"></i>
<span class="tip" v-if="istip" @mouseenter="showTip(true)" @mouseleave="showTip(false)">切换地图模式</span>