All Questions
2 questions
1
vote
1
answer
486
views
How to access SFC data properties from the parent not using $refs in Vue v3?
I have this Vue 3 SFC
<template>
<div>
Home component
</div>
</template>
<script>
export default {
name: 'Home',
icon: 'house-icon'
}
</script&...
8
votes
1
answer
20k
views
Vue 3, what can be the cause of "Failed to resolve component" error?
I am trying to include one component into another component, but I am getting the error "Failed to resolve component: applications-overview-table" in the browser console.
Parent component &...