1
2
3
4
5
6
7
8
9
10
11
12
13
14
| <template>
| <h1>this is test</h1>
| <lightning-card title="lcShow" icon-name="custom:custom14">
| <div class="slds-card__body slds-card__body_inner">
| fuck you, {name}!
| </div>
| </lightning-card>
| <lightning-input value={greeting} onchange={handleChange} onblur={logHistory}></lightning-input>
| <template if:true={showDetail}>
| <div class="slds-m-vertical_medium">
| 不允许输入xx
| </div>
| </template>
| </template>
|
|