Example 1: vue js focus ref. <input type="text" ref="searchbar"> <script> export default { mounted() { this.$refs.searchbar.$el.focus(); } }; </script> ...
確定! 回上一頁