0👍
If you just want to add touch effects to view, you can use pseudo class:
<style scoped>
.logo {
width: 360px;
height: 82px;
background-color: red;
}
.logo:active {
width: 180px;
height: 82px;
background-color: green;
}
</style>
ref: http://weex.apache.org/references/common-style.html#Pseudo-class-v0-9-5
- [Vuejs]-Why append method not working with empty array in VueJS
- [Vuejs]-VueJS- prop is being mutated when local copy updates
Source:stackexchange.com