On Vue v1.0.0-beta.3, when creating a component that has a two-way binding specified, but not required, a warning is still thrown. For example: ``` javascript var component = Vue.component({ props: { show: { type: Boolean, default: false, twoWay: true } } }); ``` This prints the warning: "[Vue warn]: Prop "show" expects a two-way binding type."