ocratravis

Results 4 issues of ocratravis

Suppose that I have a parent component, containing this: ``` {{ $error.$message }} Save Company import { reactive } from 'vue' import useVuelidate from '@vuelidate/core' import { required } from...

docs
2.0

The docs for One to One relationships make it clear that you need to define .belongsTo() on the related model: https://vuex-orm.org/guide/model/relationships.html#one-to-one-inverse However, the docs for One to Many relationships do...

In [the docs for the persistBy option](https://vuex-orm.github.io/plugin-axios/guide/configurations.html#persistby), it would be helpful to link to [the explanation of insert vs. create in the main Vuex ORM docs](https://vuex-orm.org/guide/data/inserting-and-updating.html). Without this, developers who...

#### Is your feature request related to a problem? Please describe... Suppose that I have a Company model, which has many Employee models. Currently, I can't do this: ``` const...