chore: use script setup lang=ts everywhere (#2944)

This commit is contained in:
Shinigami 2024-09-07 11:30:43 +02:00 committed by GitHub
parent 4caa63e84f
commit e477cd8ee2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 9 additions and 15 deletions

View file

@ -1,8 +1,7 @@
<script>
export default {
name: 'ToggleIcon',
props: { up: Boolean },
}
<script setup lang="ts">
const { up } = defineProps<{
up?: boolean
}>()
</script>
<template>