黄千龙
2023-05-26 7986d6aaf7e235f2f5a7dac7345f97a76ac00b97
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;
    }
}