vue.js渲染完成后,想触发一些事情,写在哪里呢?
答案是mounted
例子:
new Vue({ el:'#demo', data:{ text:'Hello' }, mounted:function(){ alert('render complete') } })