vue-schema-org-integrations
Version:
Helper installs functions for frameworks. Currently, supporting Vite, VitePress and Vitesse.
17 lines (13 loc) • 495 B
TypeScript
export { schemaOrgAutoImports, schemaOrgComponents } from 'vue-schema-org';
import { ComponentResolver } from 'unplugin-vue-components';
type SchemaOrgResolverFn = ComponentResolver
interface SchemaOrgResolverOptions {
/**
* prefix for headless ui components used in templates
*
* @default ""
*/
prefix?: string;
}
declare function SchemaOrgResolver(options?: SchemaOrgResolverOptions): SchemaOrgResolverFn;
export { SchemaOrgResolver, SchemaOrgResolverOptions };