angularjs - Passing directives to Component in Angular 1.5 -
i'm using angular 1.5 library , wants create component simple text box below. component js 'use strict'; angular .module('components') .component('inputbox', { bindings: { label: '@', name: '@', type: '@', classes: '@', placeholder: '@', maxlength: '@' }, controlleras: 'field', templateurl: 'app/components/inputbox.html' }); component template <input type="{{field.type || 'text'}}" class="form-control {{field.classes}}" id="{{field.name}}" name="{{field.name || 'unnamed'}}" maxlength="{{field.maxlength}}" placeholder="{{field.placeholder}}" /> usage in templates. <input-box label="enter account" n...