feat: display module for chunithm
Also make the progress bar all shiny
This commit is contained in:
@ -19,6 +19,7 @@ defineProps({
|
||||
name: String,
|
||||
tooltip: String,
|
||||
type: String,
|
||||
defaultValue: Number,
|
||||
});
|
||||
</script>
|
||||
|
||||
@ -29,6 +30,10 @@ defineProps({
|
||||
:model-value="prf.current!.data.patches[id!] !== undefined"
|
||||
@update:model-value="(v: boolean) => toggleUnary(id!, v)"
|
||||
/>
|
||||
<InputNumber v-else class="number-input" />
|
||||
<InputNumber
|
||||
v-else
|
||||
class="number-input"
|
||||
:placeholder="(defaultValue ?? 0).toString()"
|
||||
/>
|
||||
</OptionRow>
|
||||
</template>
|
||||
|
Reference in New Issue
Block a user