My colleague and I have an interesting question. He calls to use props in a component via this.$props[propName], but I call to use props simply via this[propName]. I haven't found any mention of using $props in Vue documentation (I don't know, maybe I'm not looking hard enough), so my way seems more correct to me. My colleague thinks that using $props is the more obvious way to immediately understand whether it's prop or data. Which of us is right?
Stack: Javascript + Vue2 + Nuxt