import ngModule from '../../module'; import Field from '../field'; export default class Textfield extends Field { constructor($element, $scope, $compile) { super($element, $scope, $compile); this.buildInput('text'); } } ngModule.vnComponent('vnTextfield', { controller: Textfield });