Solution to Avoid mutating a prop directly since the value will be overwritten whenever the parent component re-renders. Instead, use a data or computed property based on the prop's value.
Working on a Vue.js and TypeScript project. I had this: @Prop() enabled!: boolean = false; And got this error: Avoid mutating a prop directly since the value will be overwritten whenever the parent