{(two-way)}
	
	
		can.view.bindings.twoWay
	
	
	
	 
Two-way bind a value in the viewModel or the element to the parent scope.
{(child-prop)}="key"
Two-way binds childProp in the  viewModel to
key in the parent scope.  If childProp is updated key will be updated
and vice-versa.
<my-component {(some-prop)}="value"/>
When setting up the binding:
- If childPropisundefined,keywill be set tochildProp.
- If keyisundefined,childPropwill be set tokey.
- If both childPropandkeyare defined,keywill be set tochildProp.
Parameters
- 
			child-prop{String}The name of the property of the viewModel to two-way bind. 
- 
			key{String}The name of the property to two-way bind in the parent scope. 
{($child-prop)}="key"
Two-way binds the element's childProp property or attribute to
key in the parent scope.  If childProp is updated key will be updated
and vice-versa.
<input {($value)}="name"/>
Parameters
- 
			child-prop{String}The name of the element's property or attribute to two-way bind. 
- 
			key{String}The name of the property to two-way bind in the parent scope. 
Use
{(child-prop)}="key"is used to two-way bind a value in a viewModel to a value in the scope. If one value changes, the other value is updated.The following two-way binds the
<edit-plate>element'splateNameto theediting.licensePlatevalue in the scope. This allowsplateNameto update ifediting.licensePlatechanges andediting.licensePlateto update ifplateNamechanges.This demo can be expressed a bit easier with the references scope:
Initialization
When a binding is being initialized, the behavior of what the viewModel and scope properties are set to depends on their initial values.
If the viewModel value is
not undefinedand the scope isundefined, scope will be set to the viewModel value.If the viewModel value is
undefinedand the scope isnot undefined, viewModel will be set to the scope value.If both the viewModel and scope are
not undefined, viewModel will be set to the scope value.