点击按钮 控件背景颜色简单过渡变更。
<style>
/*
过渡
*/
.transtion {
transition: 3s background-color ease;
}
.blue {
background-color: blue;
}
.green {
background-color: green;
}
</style>
<body>
<div id="root"></div>
</body>
<script>
// 创建 vue实例
const app = Vue.createApp({
data(