Misu Szijjarto-Nagy
Misu Szijjarto-Nagy
I tried to create a validation group almost exactly like it is mentioned in the [documentation](https://vuelidate.netlify.com/#sub-validation-groups). The only difference was I wanted to **nest** my validation group under a `form`...
[](https://issuehunt.io/r/kazupon/vue-i18n/issues/426) ## Feature request I would like to be able to do the following in components: this.$t('message.path', { scope: 'my.very.long.scope.to.the.message' }) // or const myScope = 'my.very.long.scope.to.the.message' this.$t('message.path', { scope:...
### What problem does this feature solve? I am creating a small package shipping some custom input fields for a project of ours. For templates I use `pug`. I decided...
related to #237 The reasons: 1. the instances returned by getters like `Model.all()`, `Model.find(1)` or `Model.query().first()` is the **very instance stored in `vuex`** and, as such, cannot be mutated outside...
PR #285 does not work because of line https://github.com/vuex-orm/vuex-orm/blob/150a01a0dc37d29b2f1e30cabe68a12f543a01ba/src/query/Query.ts#L932 There the variable `instances` is already filtered, and does not contain the original keys, but - if I am not mistaken...
I have a model like the following one: ```js class Person extends Model { static entity = 'people' static fields () { return { id: this.attr(), name: this.string(), parentId: this.string(),...