chore: use `defineOptions` instead of script (#1154)

pull/1084/head^2
webfansplz 2023-01-15 14:06:12 +08:00 zatwierdzone przez GitHub
rodzic 2ed3373352
commit 399d7851e3
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 4 dodań i 6 usunięć

Wyświetl plik

@ -53,6 +53,10 @@ const { modelValue: visible } = defineModel<{
modelValue: boolean modelValue: boolean
}>() }>()
defineOptions({
inheritAttrs: false,
})
const deactivated = useDeactivated() const deactivated = useDeactivated()
const route = useRoute() const route = useRoute()
@ -132,12 +136,6 @@ useEventListener('keydown', (e: KeyboardEvent) => {
}) })
</script> </script>
<script lang="ts">
export default {
inheritAttrs: false,
}
</script>
<template> <template>
<Teleport to="body"> <Teleport to="body">
<!-- Dialog component --> <!-- Dialog component -->