UNPKG

igi_orion_cignacmb

Version:

Censors words out of text

20 lines (16 loc) 490 B
var CentralWidget = require('./CentralWidget'); var input = $.extend({}, CentralWidget, { type: 'input', //组件的类别,用于service层动态对比配置进行实例化 historyValue: '', value: '', readonly: false, setValue: function (value) { //设置值 var that = this; that.value = value }, getValue: function () { //获取值 var that = this; return that.value; }, }); module.exports = input;