[Vuejs]-Why does this.$refs.inuputField'.focus() not work in Vue?

0👍

Your code works.
See this example.

You do at least need export default though:

<script>
 export default {
    methods: {
      btn() {
        this.$refs.inputField.focus()
      }
    }
  }
</script>

Leave a comment