本文整理匯總了TypeScript中@ember/-internals/metal.set函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript set函數的具體用法?TypeScript set怎麽用?TypeScript set使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了set函數的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: set
[UPDATE](value: any) {
let parent = this._parentReference.value();
set(parent, this._propertyKey, value);
}
示例2: update
update({ type, instance }: InputComponentState): void {
set(instance, 'type', type.value());
}
示例3: didInsertElement
'autofocus',
'required',
'form',
],
type: 'checkbox',
disabled: false,
indeterminate: false,
didInsertElement() {
this._super(...arguments);
get(this, 'element').indeterminate = Boolean(get(this, 'indeterminate'));
},
change() {
set(this, 'checked', this.element.checked);
},
__sourceInput: null,
init() {
if (this.__sourceInput) {
this.__sourceInput.__injectEvents(this);
}
this._super(...arguments);
},
});
Checkbox.toString = () => '@ember/component/checkbox';
export default Checkbox;
示例4: set
[UPDATE](value: any) {
set(this.sourceReference.value() as any, this.pathReference.value(), value);
}