Hi,
I'm trying one of your examples using toolbar:
I'd like to bind with 2-binding v-model the input textbox (searchTemplate) with a data that I'd like to insert in the script's data.
Let's say I name this variable searchData:
searchData:"foo"
Your template now is:
searchTemplate: '<div class="e-input-group"><input class="e-input" type="text" placeholder="Search" /><span class="e-input-group-icon em-icons e-search"></span></div>',
If I change it like this:
searchTemplate: '<div class="e-input-group"><input class="e-input" type="text" placeholder="Search" v-model="searchData"/><span class="e-input-group-icon em-icons e-search"></span></div>',
it does not work.
Can you help me ?