S SearchRSS
< BackHome
Newest questions tagged css - Stack Overflow

TransitionGroup smooth move causing container height to decrease

Here's what my code looks like at the moment (playground): import { ref } from 'vue' const items = ref([]) const cur = ref(0) add() add() add() function add() { items.value.push(cur.value++) } function swap(idx) {

View original source