searchTerm を指定して Accounts のリストを返す Apex メソッド getAccounts は、Lightning Web コンポーネントで使用できます。 getAccounts メソッドを使用する Lightning Web コンポーネント プロパティの正しい定義は何ですか?
正解:D
Option D correctly defines a property that uses the getAccounts Apex method. It uses the @wire decorator with a parameterized method reference. @wire(getAccounts, { searchTerm: '$searchTerm' }) accountList;