mirror of
https://github.com/Art051/it-tools.git
synced 2025-08-11 19:29:03 +00:00
refactor(lint): linter auto fix
This commit is contained in:
@@ -1,10 +1,6 @@
|
||||
<template>
|
||||
<n-card>
|
||||
<n-form
|
||||
label-width="120"
|
||||
label-placement="left"
|
||||
:show-feedback="false"
|
||||
>
|
||||
<n-form label-width="120" label-placement="left" :show-feedback="false">
|
||||
<n-form-item label="Your string:">
|
||||
<n-input v-model:value="input" />
|
||||
</n-form-item>
|
||||
@@ -50,7 +46,7 @@
|
||||
|
||||
<script setup lang="ts">
|
||||
import { ref } from 'vue';
|
||||
import InputCopyable from "../../components/InputCopyable.vue";
|
||||
import InputCopyable from '../../components/InputCopyable.vue';
|
||||
|
||||
import {
|
||||
camelCase,
|
||||
@@ -64,14 +60,13 @@ import {
|
||||
pathCase,
|
||||
sentenceCase,
|
||||
snakeCase,
|
||||
} from "change-case";
|
||||
|
||||
const input = ref('lorem ipsum dolor sit amet')
|
||||
} from 'change-case';
|
||||
|
||||
const input = ref('lorem ipsum dolor sit amet');
|
||||
</script>
|
||||
|
||||
<style lang="less" scoped>
|
||||
.n-form-item {
|
||||
margin: 5px 0;
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user