fix: lint
continuous-integration/drone/pr Build is failing Details

This commit is contained in:
kolaente 2021-12-26 13:42:21 +01:00
parent 0322daf4d4
commit 9c5613ad98
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
2 changed files with 4 additions and 4 deletions

View File

@ -27,8 +27,8 @@
</template>
<script lang="ts" setup>
import {ref, watch} from "vue";
import {useDebounceFn} from "@vueuse/core";
import {ref, watch} from 'vue'
import {useDebounceFn} from '@vueuse/core'
const props = defineProps({
tabindex: String,
@ -49,7 +49,7 @@ watch(
if (doValidate) {
validate()
}
}
},
)
function validate() {

View File

@ -70,7 +70,7 @@
<script setup>
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 {store} from '@/store'