fix: lint
This commit is contained in:
parent
0322daf4d4
commit
9c5613ad98
2 changed files with 4 additions and 4 deletions
|
@ -27,8 +27,8 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import {ref, watch} from "vue";
|
import {ref, watch} from 'vue'
|
||||||
import {useDebounceFn} from "@vueuse/core";
|
import {useDebounceFn} from '@vueuse/core'
|
||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
tabindex: String,
|
tabindex: String,
|
||||||
|
@ -49,7 +49,7 @@ watch(
|
||||||
if (doValidate) {
|
if (doValidate) {
|
||||||
validate()
|
validate()
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
function validate() {
|
function validate() {
|
||||||
|
|
|
@ -70,7 +70,7 @@
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import {useDebounceFn} from '@vueuse/core'
|
import {useDebounceFn} from '@vueuse/core'
|
||||||
import {ref, reactive, toRaw, computed, onBeforeMount, watch} from 'vue'
|
import {ref, reactive, toRaw, computed, onBeforeMount} from 'vue'
|
||||||
|
|
||||||
import router from '@/router'
|
import router from '@/router'
|
||||||
import {store} from '@/store'
|
import {store} from '@/store'
|
||||||
|
|
Loading…
Reference in a new issue