new Vue({ el: '#app', data: { input:'123' }, methods: { inputFun(){ this.input='456'; $('#input').val('789') } } })