Kuis materi Custom Directives di Vue — uji pemahamanmu dengan pertanyaan pilihan ganda, penjelasan jawaban, dan skor langsung. Main gratis di Hyper Sheets.
const vFocus = {
___: (el) => el.focus()
}<script setup>
const focus = { mounted: (el) => el.focus() }
</script>
<template>
<input v-focus />
</template>