It works fine, but I see these errors in the JS console:
vue.runtime.esm.js?2b0e:619 [Vue warn]: Missing required prop: "message"
(found in <Root>)
It happens at line 7 of index.js where the component is first created. The message prop isn't passed into the component there, only on the next line (line 13):
It works fine, but I see these errors in the JS console:
It happens at line 7 of index.js where the component is first created. The
message
prop isn't passed into the component there, only on the next line (line 13):Perhaps a null message (or the actual one) could be passed in to the initial construction to prevent that error?