zhangchunxu
2023-08-05 02bf7838fb54a246f876d0a1700d7dcce161e2b1
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;
    }
}