We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47e85d3 commit 3ba63feCopy full SHA for 3ba63fe
test/fixtures/basic/type-test.ts
@@ -16,8 +16,8 @@ defineOgImage('NuxtSeo.satori', { title: 'Test' })
16
// Bare shorthand (unambiguous component)
17
defineOgImage('Creal', { title: 'Test' })
18
19
-// Component with no typed props (runtime defineProps)
20
-defineOgImage('CalcTest', {})
+// Ambiguous component (has both .satori and .takumi variants, so must use dot-notation)
+defineOgImage('CalcTest.satori', {})
21
22
// Getter function for reactive props
23
defineOgImage('CustomFonts', { title: () => 'reactive' })
0 commit comments