mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-07 01:19:57 +00:00
chore: enable type checking in more places
This commit is contained in:
parent
08d629ea78
commit
1e0f733c50
3 changed files with 3 additions and 3 deletions
2
app.vue
2
app.vue
|
@ -1,4 +1,4 @@
|
|||
<script setup>
|
||||
<script setup lang="ts">
|
||||
setupPageHeader()
|
||||
await setupI18n()
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<script setup>
|
||||
<script setup lang="ts">
|
||||
const { notifications } = useNotifications()
|
||||
</script>
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<script setup>
|
||||
<script setup lang="ts">
|
||||
const sub = process.dev ? 'dev' : useRuntimeConfig().public.env === 'staging' ? 'preview' : 'alpha'
|
||||
</script>
|
||||
|
||||
|
|
Loading…
Reference in a new issue