Skip to content
Snippets Groups Projects
Commit 0b4a076f authored by syuilo's avatar syuilo
Browse files

refactor

parent 65a19f0c
No related branches found
No related tags found
No related merge requests found
......@@ -47,6 +47,7 @@ module.exports = {
"vue/no-unused-components": "warn",
"vue/valid-v-for": "warn",
"vue/return-in-computed-property": "warn",
"vue/no-setup-props-destructure": "warn",
"vue/max-attributes-per-line": "off",
"vue/html-self-closing": "off",
"vue/singleline-html-element-content-newline": "off",
......
......@@ -38,7 +38,7 @@ const props = defineProps<{
}>();
const emit = defineEmits<{
(e: 'update:modelValue', v: string | null): void;
(ev: 'update:modelValue', v: string | null): void;
}>();
const available = ref(false);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment