1
chenjingwu
2024-04-10 5fa0c8c93f5d7552d4655231193f4134a4dba1f9
1
2
3
4
5
6
7
8
9
import { LightningElement } from 'lwc';
 
export default class BeforeRenderHook extends LightningElement {
    courses;
 
    connectedCallback() {
        this.courses = ['Irrigation Systems', 'Soils', 'Organic Crops'];
    }
}