1
chenjingwu
2024-05-24 ab5a982874f88556b72e02177fa88dedc2d56fe8
1
2
3
4
5
6
7
import { LightningElement, wire } from 'lwc';
import getAccounts from '@salesforce/apex/PageMessagesDataRetrievalControllerLwc.getAccounts';
 
export default class PageMessagesDataRetrieval extends LightningElement {
    @wire(getAccounts)
    accounts;
}