[Vuejs]-'this.$refs' is always empty in parent component

3👍

The ref Vue special attribute is used to refer a DOM node (or a child component) from your current component template.

If you want to pass some content to a custom component, this is the use case for a <slot> Vue built-in component.

👤ghybs

Leave a comment