In vue 2.x you can solve it with a directive. Vue.directive('focus', { inserted: function (el) { el.focus() } }). Then you can use v-focus ...
確定! 回上一頁