Last active
May 27, 2018 14:30
-
-
Save quannt/531eedbd300dc4706c08018da53b667a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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