console
new Vue({
el: '#exercise',
data: {
},
methods: {
}
});
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<div id="exercise">
<div>
<button>Start Effect</button>
<div id="effect"></div>
</div>
<div>I got no class :(</div>
<br>
<div>
<input type="text">
<div></div>
</div>
<div>
<input type="text">
<input type="text">
<div></div>
</div>
<div>
<input type="text">
<div></div>
</div>
<div>
<button>Start Progress</button>
</div>
</div>
#effect {
width: 100px;
height: 100px;
border: 1px solid black;
}
.highlight {
background-color: red;
width: 200px !important;
}
.shrink {
background-color: gray;
width: 50px !important;
}
.blue {
background-color: blue;
}
.float {
float: right;
}
.text-color {
color: yellow;
}
.visible {
width: 100px;
height: 50px;
}
.progress-bar {
width: 200px;
height: 20px;
border: 1px solid black;
}
.myClass2 {
background-color: yellow;
width: 150px;
height: 150px;
}