<template>
<div>
<text @click="change" style="font-size:50px">click</text>
<div>
<text v-bind:class="{active: isActive}">class变换</text>
</div>
</div>
</template>
<style>
.active{
background-color:red
}
</style>
<script>
export default {
data:function() { return {
isActive:true,
}},
methods:{
change:function(){
this.isActive=!this.isActive
}
}
}
在weex中动态切换样式,电脑游览器中预览有效果,但在手机playground中点击却没有反应,请问这是什么问题?
扬帆大鱼
一只斗牛犬