bhoriuchi / vue-deepset

Deep set Vue.js objects

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

does not work without using proxy (e.g internet explorer), vuex

boindil opened this issue · comments

Sadly, this doesnt seem to work when in fallback mode. There is no error, it simply doesnt work. Tested in Chrome (useProxy: false) and internet explorer.

When using the proxy, it works like a charm (only supported browsers of course)!

<input v-model="formData['key.value']" />
computed: {
   formData () {
        let model = this.$deepModel('key', { useProxy: false })
   }
}