Compare commits

...

6 Commits

Author SHA1 Message Date
Farnabaz
c8b4bcbfeb upgrade component meta 2025-04-22 10:22:18 +02:00
Farnabaz
6e3c3ba186 HTMLElement is not defined 2025-04-22 10:14:11 +02:00
Farnabaz
02f0847732 chore: upgrade component meta 2025-04-22 09:42:15 +02:00
Farnabaz
fb72012b01 Merge branch 'v3' into chore/content-3.3 2025-04-22 09:39:54 +02:00
Farnabaz
956da52e1f Merge branch 'v3' into chore/content-3.3 2025-03-19 14:49:33 +01:00
Farnabaz
3c10dbb0f1 chore: upgrade content module 2025-03-04 15:02:11 +01:00
3 changed files with 1769 additions and 725 deletions

View File

@@ -23,7 +23,7 @@
"joi": "^17.13.3",
"motion-v": "0.13.1",
"nuxt": "^3.16.2",
"nuxt-component-meta": "^0.10.1",
"nuxt-component-meta": "https://pkg.pr.new/nuxt-component-meta@9d23978",
"nuxt-llms": "^0.1.2",
"nuxt-og-image": "^5.1.2",
"prettier": "^3.5.3",

2490
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -6,7 +6,7 @@ export function usePortal(portal: Ref<string | HTMLElement | boolean | undefined
const portalTarget = inject(portalTargetInjectionKey, undefined)
const to = computed(() => {
if (typeof portal.value === 'string' || portal.value instanceof HTMLElement) {
if (typeof portal.value === 'string' || portal.value) {
return portal.value
}