addon/form-items/LabelView.js File
import TextInputView from "./TextInputView";
import template from "../templates/views/label";
/**
* View to put a lable.
*
* @class EmberForm.LabelView
* @extends EmberForm.TextInputView
* @module ember-form
* @submodule ember-form-items
*/
export default TextInputView.extend({
template : template,
});
ember-form