Afe Notes

Results 1 issues of Afe Notes

代码如下: https://jsfiddle.net/afenotes/bkjxvr07/ ``` VUE {{l}} var ul = new Vue({ el: '#list', data: { list: ['apple','banana','orange'] } }) setTimeout(function(){ // $('grape').prependTo($('#list')) $('#list').children().first().text('grape') }, 3000); setTimeout(function(){ ul.list = ['Bob','Tom','Jim'] }, 6000);...