if there is no items at the begining in group transition , element will not move smoothly to new position. https://codesandbox.io/s/13wr0vojn3 The above codesandbox show the case. If edit App.vue to the following ``` data(){ return { show: true, logo: 'https://vuejs.org/images/logo.png', items:[1,2,3] //<-------change this line only } }, ``` then elements will move smoothly to new position.