upgrade to Vue 3.4.3
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-01-02 22:33:03 +01:00
parent 2c1df319e6
commit 27cda7f222
8 changed files with 871 additions and 572 deletions

View File

@@ -10,8 +10,7 @@ import * as Highcharts from 'highcharts'
import 'highcharts/css/highcharts.scss'
import Loader from '@/components/Loader.vue'
import { capitalizeFirstLetter } from '@/utils/helpers'
import type { Window } from '@/utils/types'
import type { navType } from '@/utils/types'
import type { Window, NavType } from '@/utils/types'
import { typeApi } from '@/utils/types'
import { useFetch } from '@vueuse/core'
@@ -23,7 +22,7 @@ Highcharts.setOptions({
const props = defineProps<{
activeWindow: Window
activeType: navType | null
activeType: NavType | undefined
}>()
const chart = ref<HTMLElement | null>(null)