Skip to content

No schema generated in a Vue SPA without Vue RouterΒ #44

@innocenzi

Description

@innocenzi

Hey, so I'm not sure the fact that we don't use Vue Router is the actual problem, but we're trying to implement schema-org in a Hybridly app (a server-driven SPA), but the schema never gets generated.

@vueuse/head works perfectly fine, and my understanding is that schema-org uses it under the hood, so I'm wondering if this has something to do with the router.

This is how we register the plugin:

const url = useProperty('security.url')
const head = createHead({
	titleTemplate: (title) => title ? `myLittlePlane - ${title}` : 'myLittlePlane',
})

head.use(SchemaOrgUnheadPlugin({
	title: 'myLittlePlane - European aircraft broker',
	description: 'Bringing reliable information, we represent clients looking to value, buy, sell, or trade their business jets.',
	host: import.meta.env.APP_URL,
	image: '/favicon/image.png',
},
() => ({
	url: url.value,
	path: new URL(url.value).pathname,
})))

The <SchemaOrgDebug /> is totally empty, nothing in it. The tag is nowhere to be seen, neither in <head> or at the bottom of <body>. Any idea?

Notes:

  • useProperty('security.url') is a ref that returns the current page's URL
  • Hybridly's router has event we could listen on if this is needed
  • useHead and useSeoMeta work properly everywhere

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions