1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| import { LightningElement, track, wire ,api} from 'lwc';
|
|
|
|
|
|
| import Quoto_No from '@salesforce/label/c.Quoto_No';
| import Quoto_Name from '@salesforce/label/c.Quoto_Name';
| import HP_Name from '@salesforce/label/c.HP_Name';
| import Department_Name from '@salesforce/label/c.Department_Name';
| import Currency from '@salesforce/label/c.Currency';
| export default class lexNewQuoteEntry extends LightningElement {
|
| Label = {
| Quoto_No,
| Quoto_Name,
| HP_Name,
| Department_Name,
| Currency
|
| }
|
|
|
| }
|
|