{{#if (eq ctrl.controlType "TOOLBAR")}}
<{{pascalCase appPlugin.pluginCode}} v-bind="$attrs" name="{{item.name}}" :value="rowData" :controller="controller" :store="store" />
{{else if (eq ctrl.controlType "GRID")}}
<{{pascalCase appPlugin.pluginCode}} v-bind="$attrs" name="{{#if dataItemName}}{{dataItemName}}{{else}}{{item.codeName}}{{/if}}" :value="record" :index="index" :controller="controller" :store="store" />
{{else if (eq ctrl.controlType "TREEVIEW")}}
<{{pascalCase appPlugin.pluginCode}} v-bind="$attrs" name="{{item.name}}" :value="rowData" :controller="controller" :store="store" />
{{else if (eq ctrl.controlType 'FORM')}}
<{{pascalCase appPlugin.pluginCode}} v-bind="$attrs" name="{{item.name}}" :value="store.data.{{item.name}}" :controller="controller" :store="store" />
{{else if (eq type 'PANEL')}}
<{{pascalCase appPlugin.pluginCode}} v-bind="$attrs" name="{{item.name}}" {{#if isMultiData}}:index="data.index" :value="store.layoutData[`{{item.name}}_${data.index}`]"{{else}}:value="store.layoutData.{{item.name}}"{{/if}} :controller="controller" :store="store" />
{{else}}
<{{pascalCase appPlugin.pluginCode}} v-bind="$attrs" name="{{item.name}}" :controller="controller" :store="store" />
{{/if}}
