Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

vuejs ref

<template>
	<input ref="input">
</template>

<script>
  export default {
    methods: {
	  // used to put the focus on this field from the parent
      focus() {
        this.$refs.input.focus();
      }
    }
  };
</script>
Source by vuejs.org #
 
PREVIOUS NEXT
Tagged: #vuejs #ref
ADD COMMENT
Topic
Name
2+3 =