remove unused expose

This commit is contained in:
kakkokari-gtyih 2024-10-20 20:55:45 +09:00
parent 19ae55da5b
commit d4329979ef
1 changed files with 1 additions and 2 deletions

View File

@ -42,7 +42,7 @@ SPDX-License-Identifier: AGPL-3.0-only
</template>
<script lang="ts" setup>
import { nextTick, normalizeClass, onMounted, onUnmounted, provide, watch, ref, shallowRef, computed, readonly } from 'vue';
import { nextTick, normalizeClass, onMounted, onUnmounted, provide, watch, ref, shallowRef, computed } from 'vue';
import * as os from '@/os.js';
import { isTouchUsing } from '@/scripts/touch.js';
import { defaultStore } from '@/store.js';
@ -349,7 +349,6 @@ onUnmounted(() => {
});
defineExpose({
type: readonly(type),
close,
});
</script>