KKbes
2023-08-07 cbb20845dfa7138819ba7ef1e95a56ce5bdcfcbc
1
2
3
4
5
6
7
8
9
import { LightningElement } from 'lwc';
 
export default class Binding extends LightningElement {
    courseName = 'Default';
 
    handleChange(event) {
        this.courseName = event.target.value;
    }
}