Is there a way to display the ID from my $route if a prop is empty using Vue.js? Here's what I tried:
props: {
name: {
type: String,
required: true,
default: 'user ID: ' + this.$route.params.user_id,
}
}
I keep getting an error that "this" is undefined. Any suggestions on how to access route params from props in Vue.js?