On mount the CardComponent renders and tries to pass this.class as a prop, but class is not defined on the component, so Vue throws a warning:
runtime-core.esm-bundler.js:38 [Vue warn]: Property "class" was accessed during render but is not defined on instance.
at <CardComponent ref="card" class="fieldset field" currency="AUD" ... >
There is a classes property so I wonder if this should have been used instead.
On mount the CardComponent renders and tries to pass
this.class
as a prop, butclass
is not defined on the component, so Vue throws a warning:There is a
classes
property so I wonder if this should have been used instead.