Files
Unify/application/demo/edit/news.edit.price.js

18 lines
245 B
JavaScript
Raw Normal View History

2025-12-25 11:16:59 +01:00
import newsPrice from '../news.price.js';
import input from '/elements/input.js';
export default class newsPagePrice extends newsPrice, input{
placeholder = "Price";
async keyup( event ) {
this.value = event.target.value;
}
}