vue-model icon indicating copy to clipboard operation
vue-model copied to clipboard

Model component for Vue.js

Results 13 vue-model issues
Sort by recently updated
recently updated
newest added

Json API defines errors like this ```js "errors": [ { "code": "123", "status": "422", "source": { "pointer": "/data/attributes/firstName" }, "title": "Value is too short", "detail": "First name must contain at...

Hello! This is really cool library with no alternatives. But I'm stuck with understanding how index() action works. Server should return an array of items. As result I get model...

Installing vue-model with `Vue.use(require('vue-model'));` sets the Vue.models to have register, addeventlistener and removeeventlistener, but there is no "this" calling context so accessing this.registry['name'] = definition causes an exception. ``` Vue.models...

I created a new project with vue-cli, added vue-model dependency and want to try it out. I have this: ``` import Vue from 'vue' import VueModel from 'vue-model' Vue.use(VueModel, {...

Hey just reading through the readme it's unclear whether these models have Vue's reactivity? For instance in your example of the is_aaron computed property. If you change the email and...

People seem to like demos over docs.

enhancement
help wanted

Hi, very nice implementation of models in Vue! Could you provide integration with SSR or help me, how I can do it? I did my SSR like [here](https://ssr.vuejs.org/guide/data.html#data-store) and I...

Hi, I was wondering is there a way of implementing Vuex? I see that you have your own state management although might not implement standard flux pattern also is not...