Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

Vue.js Refs

<template> <input ref="input" /> </template>
<script setup>
import { ref, onMounted } from 'vue'
const input = ref(null)
onMounted(() => {input.value.focus()})
</script>
Source by vuejs.org #
 
PREVIOUS NEXT
Tagged: #Refs
ADD COMMENT
Topic
Name
8+2 =