buli
2023-05-04 50b39c4b52bf5fd61ec46ada365c51e05a16d2ae
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>