From f3f17642e8669de10b7c3d2c09fb36583ce588f3 Mon Sep 17 00:00:00 2001 From: Felix Gabler Date: Wed, 20 Nov 2024 16:51:10 +0100 Subject: [PATCH] fix(nuxt): update `style` prop type for head components --- packages/nuxt/src/head/runtime/components.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nuxt/src/head/runtime/components.ts b/packages/nuxt/src/head/runtime/components.ts index 5913471dde..c4bee3cae3 100644 --- a/packages/nuxt/src/head/runtime/components.ts +++ b/packages/nuxt/src/head/runtime/components.ts @@ -67,7 +67,7 @@ const globalProps = { type: Boolean, default: undefined, }, - style: String, + style: [String, Object, Array], tabindex: String, title: String, translate: String,