deps: upgrade

This commit is contained in:
Julien Calixte
2026-02-15 08:00:11 +01:00
parent d1b0d51ec9
commit 5c70232fba
9 changed files with 3338 additions and 179 deletions

View File

@@ -6,8 +6,13 @@ import { markdownBuilder } from "@/hooks/useMarkdown.hook"
import { queryFileContent } from "@/modules/repo/services/repo"
import { decodeBase64ToUTF8 } from "@/utils/decodeBase64ToUTF8"
type Prop = {
user: string
repo: string
}
const FluxNote = defineAsyncComponent(() => import("@/components/FluxNote.vue"))
const props = defineProps<{ user: string; repo: string }>()
const props = defineProps<Prop>()
const user = computed(() => props.user)
const repo = computed(() => props.repo)