[Vuejs]-Refs nonexistent in vuejs

0👍

the elements are only available after the initial mount of the component
if you are using vue 2 try running your code on mounted life cycle hook.

mounted() {
  this.$refs.action.click();
}

in vue 3 use onMounted life cycle hook.

const action = ref()

onMounted(()=>{
action.value.click()
}

Leave a comment