mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-09 23:55:01 -04:00
feat(case converter): add uppercase and lowercase
This commit is contained in:
parent
3fef5106d4
commit
d8cdf117f7
2 changed files with 7 additions and 1 deletions
|
@ -36,6 +36,12 @@ const input = ref('lorem ipsum dolor sit amet');
|
|||
|
||||
<n-divider />
|
||||
|
||||
<n-form-item label="Lowercase:">
|
||||
<InputCopyable :value="input.toLowerCase()" />
|
||||
</n-form-item>
|
||||
<n-form-item label="Uppercase:">
|
||||
<InputCopyable :value="input.toUpperCase()" />
|
||||
</n-form-item>
|
||||
<n-form-item label="Camelcase:">
|
||||
<InputCopyable :value="camelCase(input, baseConfig)" />
|
||||
</n-form-item>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue