UNPKG

rollup-plugin-lwc-bundle

Version:
18 lines (14 loc) 284 B
import { LightningElement, api, wire } from 'lwc'; function getRecord() { console.log('hello'); } export default class MyElement extends LightningElement { @api recordId; @track records = []; @wire(getRecord) handleRecords(ret) { this.records = ret.data; } }