I have the same challenge, fixed by the following:
{{ title }}
and the script is
export default {
…
props:['title'],
data() {
return {
currentComponent: 'component-name',
}
},
computed: {
resetProps() {
return { ...this.$attrs };
},
}
I'm came from reactjs and I found this solve my issue