passing bindings
For a quick overview go to the sandbox environment to follow along:
Passing a binding to a child component
This is in my opinion one of the most important features of the Vuex ASR plugin. It gives you the abillity to pass model-bindings to a child component.
This means that a model that has already been bound to the component, either via Vuex ASR or conventionally in the component itself will be passable to a child component. Giving you ultimate flexibility in organising and generalising your codebase.
You could use asr-pass also in conventional Vue (or Vuex) projects, it instantly gives you the flexibility from being able to omit direct bindings in your child templates 😎
Example
So let's say we bind a model in our App file to a component <example-message>:
// src/App.vue
<template>
<div id="app">
<p>In this example we will bind a store model here:</p>
<example-message asr-bind-state="message IS v-model"/>
</div>
</template>
...
And pass it from <example-message> to <example-pass-child>:
// src/components/ExampleMessage.vue
<template>
<div id="exampleMessage">
<p>Print it in this component</p>
<p>And pass it from here to a child component</p>
<example-pass-child asr-pass="message"/>
</div>
</template>
...
note the asr-pass attribute, since message was bound to this component it is available to be passed to a child component.
// src/components/ExamplePassChild.vue
<template>
<div id="asrPassChild">
<h1>This is the child with the variable "message" passed:</h1>
<p></p>
<input v-model="message"/>
</div>
</template>
There's nothing more to it to start using it.