点击没有反应
<template>
<div id="app">
<button @click="show = !show">变变变</button>
<div style="width: 100px;height: 100px;background-color: blue;" :class="{'active': show}"></div>
</div>
</template>
<script>
export default {
name: '',
data: function(){
return {
show: true
}
}
}
</script>
<style scoped>
.active{
width:300px;
transition: width 2s;
-moz-transition: width 2s;
-webkit-transition: width 2s;
-o-transition: width 2s;
}
</style>
换成这样可以实现效果