3๐
โ
- You are passing a variable on the props, not string, change
:msg="msg"
to:msg="'msg'"
ormsg="msg"
, and:msg="hi"
to:msg="'hi'"
ormsg="hi"
- on HelloWorld component, you are supposed to to check
if (this.msg === "msg")
instead ofif (val === "msg")
๐คOwl
Source:stackexchange.com