Closed ollar closed 1 year ago
How are you initializing your FormValidation
class?
You may need to inject the owner if you are manually creating creating an instance (documentation).
Something like:
import { getOwner } from '@ember/application';
...
FormValidation.create(
getOwner(this).ownerInjection(),
{
... // initial values
}
)
@ollar believe this can be closed now? The feedback from @kiwi-josh is accurate I believe
Thanks guys, seems that solves my question
Environment
Steps to Reproduce
I am trying to test the addon on a simple case:
when I am using v-get in template:
I get error
Thanks!