buli
2023-05-22 71b93327e8f3fb3bffffc7c033c1f782e7b6ab32
1
2
3
4
5
6
7
8
<template>
    <template if:true={showInputOrText}>
        <lightning-input label="" variant="label-hiden" value={inputValue} onchange={changeInputValue}></lightning-input>
    </template>
    <template if:false={showInputOrText}>
        <lightning-formatted-number style="margin-left: 10px;" value={inputValue}></lightning-formatted-number>
    </template>
</template>