mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-24 16:56:14 -04:00
refactor(style): updated linter config
This commit is contained in:
parent
39746e07c5
commit
6b58ec554a
27 changed files with 1144 additions and 571 deletions
|
@ -1,38 +1,72 @@
|
|||
<template>
|
||||
<n-space item-style="flex:1">
|
||||
<n-card title="Encode">
|
||||
<n-form-item label="Your string :" :feedback="encodedValidation.message"
|
||||
:validation-status="encodedValidation.status">
|
||||
<n-input v-model:value="encodeInput" type="textarea" placeholder="The string to encode"
|
||||
:autosize="{ minRows: 3 }" />
|
||||
</n-form-item>
|
||||
<n-space item-style="flex:1">
|
||||
<n-card title="Encode">
|
||||
<n-form-item
|
||||
label="Your string :"
|
||||
:feedback="encodedValidation.message"
|
||||
:validation-status="encodedValidation.status"
|
||||
>
|
||||
<n-input
|
||||
v-model:value="encodeInput"
|
||||
type="textarea"
|
||||
placeholder="The string to encode"
|
||||
:autosize="{ minRows: 3 }"
|
||||
/>
|
||||
</n-form-item>
|
||||
|
||||
<n-form-item label="Your string encoded :">
|
||||
<n-input :value="encodeOutput" type="textarea" readonly placeholder="Your string encoded"
|
||||
:autosize="{ minRows: 3 }" />
|
||||
</n-form-item>
|
||||
<n-form-item label="Your string encoded :">
|
||||
<n-input
|
||||
:value="encodeOutput"
|
||||
type="textarea"
|
||||
readonly
|
||||
placeholder="Your string encoded"
|
||||
:autosize="{ minRows: 3 }"
|
||||
/>
|
||||
</n-form-item>
|
||||
|
||||
<n-space justify="center">
|
||||
<n-button @click="copyEncoded" secondary>Copy</n-button>
|
||||
</n-space>
|
||||
</n-card>
|
||||
<n-card title="Encode">
|
||||
<n-form-item label="Your encode string :" :feedback="decodeValidation.message"
|
||||
:validation-status="decodeValidation.status">
|
||||
<n-input v-model:value="decodeInput" type="textarea" placeholder="The string to decode"
|
||||
:autosize="{ minRows: 3 }" />
|
||||
</n-form-item>
|
||||
<n-space justify="center">
|
||||
<n-button
|
||||
secondary
|
||||
@click="copyEncoded"
|
||||
>
|
||||
Copy
|
||||
</n-button>
|
||||
</n-space>
|
||||
</n-card>
|
||||
<n-card title="Encode">
|
||||
<n-form-item
|
||||
label="Your encode string :"
|
||||
:feedback="decodeValidation.message"
|
||||
:validation-status="decodeValidation.status"
|
||||
>
|
||||
<n-input
|
||||
v-model:value="decodeInput"
|
||||
type="textarea"
|
||||
placeholder="The string to decode"
|
||||
:autosize="{ minRows: 3 }"
|
||||
/>
|
||||
</n-form-item>
|
||||
|
||||
<n-form-item label="Your string decoded :">
|
||||
<n-input :value="decodeOutput" type="textarea" readonly placeholder="Your string decoded"
|
||||
:autosize="{ minRows: 3 }" />
|
||||
</n-form-item>
|
||||
<n-form-item label="Your string decoded :">
|
||||
<n-input
|
||||
:value="decodeOutput"
|
||||
type="textarea"
|
||||
readonly
|
||||
placeholder="Your string decoded"
|
||||
:autosize="{ minRows: 3 }"
|
||||
/>
|
||||
</n-form-item>
|
||||
|
||||
<n-space justify="center">
|
||||
<n-button @click="copyDecoded" secondary>Copy</n-button>
|
||||
</n-space>
|
||||
</n-card>
|
||||
</n-space>
|
||||
<n-space justify="center">
|
||||
<n-button
|
||||
secondary
|
||||
@click="copyDecoded"
|
||||
>
|
||||
Copy
|
||||
</n-button>
|
||||
</n-space>
|
||||
</n-card>
|
||||
</n-space>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue