mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-21 15:26:15 -04:00
refactor(json-viewer): input monospace font (#485)
This commit is contained in:
parent
38710dce56
commit
9125dcf9c6
1 changed files with 3 additions and 2 deletions
|
@ -41,16 +41,17 @@ const rawJsonValidation = useValidation({
|
||||||
:feedback="rawJsonValidation.message"
|
:feedback="rawJsonValidation.message"
|
||||||
:validation-status="rawJsonValidation.status"
|
:validation-status="rawJsonValidation.status"
|
||||||
>
|
>
|
||||||
<n-input
|
<c-input-text
|
||||||
ref="inputElement"
|
ref="inputElement"
|
||||||
v-model:value="rawJson"
|
v-model:value="rawJson"
|
||||||
placeholder="Paste your raw JSON here..."
|
placeholder="Paste your raw JSON here..."
|
||||||
type="textarea"
|
|
||||||
rows="20"
|
rows="20"
|
||||||
|
multiline
|
||||||
autocomplete="off"
|
autocomplete="off"
|
||||||
autocorrect="off"
|
autocorrect="off"
|
||||||
autocapitalize="off"
|
autocapitalize="off"
|
||||||
spellcheck="false"
|
spellcheck="false"
|
||||||
|
monospace
|
||||||
/>
|
/>
|
||||||
</n-form-item>
|
</n-form-item>
|
||||||
<n-form-item label="Prettified version of your JSON">
|
<n-form-item label="Prettified version of your JSON">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue