Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/justin-lyon/lwc-lookup

An SObject Generic Lookup field with LWC
https://github.com/justin-lyon/lwc-lookup

debounce lightning-web-components lookup lwc search

Last synced: about 2 months ago
JSON representation

An SObject Generic Lookup field with LWC

Awesome Lists containing this project

README

        

# lwc-lookup

An SObject Generic Lookup component built with LWCs.

## License

[BSD3 License](./LICENSE)

![demo](lwc-lookup.gif)

## Usage

```html









Account Id: {accountId}




```
```javascript
import { LightningElement, track } from 'lwc'

export default class MyComponent extends LightningElement {
@track accountId

handleAccountLookup (event) {
this.accountId = event.detail
}
}

```