Skip to content

Instantly share code, notes, and snippets.

@quannt
Last active May 27, 2018 14:30
Show Gist options
  • Save quannt/531eedbd300dc4706c08018da53b667a to your computer and use it in GitHub Desktop.
Save quannt/531eedbd300dc4706c08018da53b667a to your computer and use it in GitHub Desktop.
<template>
<input v-model="foo.bar"> // this will work
<input v-model="foo.bar.baz"> // Exception: cannot read property 'baz' of undefined
</template>
<script>
export default {
....
data() {
return {
foo: { }
};
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment