zhangchunxu
2023-07-21 9cf6073e08e6c398de348b5856ce1265753a7567
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;
    }
}