chore: use defineOptions instead of script (#1154)

This commit is contained in:
webfansplz 2023-01-15 14:06:12 +08:00 committed by GitHub
parent 2ed3373352
commit 399d7851e3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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