|
1 | 1 | import { computed, defineComponent, h, ref, unref } from 'vue' |
2 | | -// @ts-expect-error untyped |
3 | | -import { defineArticle, defineBreadcrumb, defineComment, defineEvent, defineHowTo, defineImage, defineLocalBusiness, defineOrganization, definePerson, defineProduct, defineQuestion, defineRecipe, defineReview, defineVideo, defineWebPage, defineWebSite } from '#vueuse/schema-org/provider' |
4 | | -// @ts-expect-error untyped |
| 2 | +import { |
| 3 | + defineArticle, defineBook, |
| 4 | + defineBreadcrumb, |
| 5 | + defineComment, defineCourse, |
| 6 | + defineEvent, |
| 7 | + defineHowTo, |
| 8 | + defineImage, defineItemList, |
| 9 | + defineLocalBusiness, defineMovie, |
| 10 | + defineOrganization, |
| 11 | + definePerson, |
| 12 | + defineProduct, |
| 13 | + defineQuestion, |
| 14 | + defineRecipe, |
| 15 | + defineReview, defineSoftwareApp, |
| 16 | + defineVideo, |
| 17 | + defineWebPage, |
| 18 | + defineWebSite, |
| 19 | +} from '#vueuse/schema-org/provider' |
5 | 20 | import { useSchemaOrg } from '#vueuse/schema-org/runtime' |
6 | 21 |
|
7 | 22 | const shallowVNodesToText = (nodes: any) => { |
@@ -85,14 +100,19 @@ export const SchemaOrgBreadcrumb = defineSchemaOrgComponent('SchemaOrgBreadcrumb |
85 | 100 | export const SchemaOrgComment = defineSchemaOrgComponent('SchemaOrgComment', defineComment) |
86 | 101 | export const SchemaOrgEvent = defineSchemaOrgComponent('SchemaOrgEvent', defineEvent) |
87 | 102 | export const SchemaOrgHowTo = defineSchemaOrgComponent('SchemaOrgHowTo', defineHowTo) |
88 | | -export const SchemaOrgOrganization = defineSchemaOrgComponent('SchemaOrgOrganization', defineOrganization) |
89 | | -export const SchemaOrgPerson = defineSchemaOrgComponent('SchemaOrgPerson', definePerson) |
90 | 103 | export const SchemaOrgImage = defineSchemaOrgComponent('SchemaOrgImage', defineImage) |
91 | 104 | export const SchemaOrgLocalBusiness = defineSchemaOrgComponent('SchemaOrgLocalBusiness', defineLocalBusiness) |
| 105 | +export const SchemaOrgOrganization = defineSchemaOrgComponent('SchemaOrgOrganization', defineOrganization) |
| 106 | +export const SchemaOrgPerson = defineSchemaOrgComponent('SchemaOrgPerson', definePerson) |
92 | 107 | export const SchemaOrgProduct = defineSchemaOrgComponent('SchemaOrgProduct', defineProduct) |
93 | 108 | export const SchemaOrgQuestion = defineSchemaOrgComponent('SchemaOrgQuestion', defineQuestion) |
94 | | -export const SchemaOrgReview = defineSchemaOrgComponent('SchemaOrgReview', defineReview) |
95 | 109 | export const SchemaOrgRecipe = defineSchemaOrgComponent('SchemaOrgRecipe', defineRecipe) |
| 110 | +export const SchemaOrgReview = defineSchemaOrgComponent('SchemaOrgReview', defineReview) |
96 | 111 | export const SchemaOrgVideo = defineSchemaOrgComponent('SchemaOrgVideo', defineVideo) |
97 | 112 | export const SchemaOrgWebPage = defineSchemaOrgComponent('SchemaOrgWebPage', defineWebPage) |
98 | 113 | export const SchemaOrgWebSite = defineSchemaOrgComponent('SchemaOrgWebSite', defineWebSite) |
| 114 | +export const SchemaOrgMovie = defineSchemaOrgComponent('SchemaOrgMovie', defineMovie) |
| 115 | +export const SchemaOrgCourse = defineSchemaOrgComponent('SchemaOrgCourse', defineCourse) |
| 116 | +export const SchemaOrgItemList = defineSchemaOrgComponent('SchemaOrgItemList', defineItemList) |
| 117 | +export const SchemaOrgBook = defineSchemaOrgComponent('SchemaOrgBook', defineBook) |
| 118 | +export const SchemaOrgSoftwareApp = defineSchemaOrgComponent('SchemaOrgSoftwareApp', defineSoftwareApp) |
0 commit comments