Skip to content

Instantly share code, notes, and snippets.

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