18 lines
245 B
JavaScript
18 lines
245 B
JavaScript
|
|
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;
|
|
|
|
}
|
|
|
|
} |