diff --git a/auto-imports.d.ts b/auto-imports.d.ts index 778a2fb..d2b2d2f 100644 --- a/auto-imports.d.ts +++ b/auto-imports.d.ts @@ -451,7 +451,6 @@ declare module 'vue' { readonly shallowReactive: UnwrapRef readonly shallowReadonly: UnwrapRef readonly shallowRef: UnwrapRef - readonly showSuccessToast: UnwrapRef readonly showToast: UnwrapRef readonly storeToRefs: UnwrapRef readonly syncRef: UnwrapRef diff --git a/components.d.ts b/components.d.ts index 1281261..1e9871d 100644 --- a/components.d.ts +++ b/components.d.ts @@ -13,6 +13,7 @@ export {} declare module 'vue' { export interface GlobalComponents { BackButton: typeof import('./src/components/back-button.vue')['default'] + Divider: typeof import('./src/components/divider.vue')['default'] Empty: typeof import('./src/components/empty.vue')['default'] IonApp: typeof import('@ionic/vue')['IonApp'] IonAvatar: typeof import('@ionic/vue')['IonAvatar'] @@ -39,6 +40,7 @@ declare module 'vue' { IonTabBar: typeof import('@ionic/vue')['IonTabBar'] IonTabButton: typeof import('@ionic/vue')['IonTabButton'] IonTabs: typeof import('@ionic/vue')['IonTabs'] + IonText: typeof import('@ionic/vue')['IonText'] IonTextarea: typeof import('@ionic/vue')['IonTextarea'] IonTitle: typeof import('@ionic/vue')['IonTitle'] IonToggle: typeof import('@ionic/vue')['IonToggle'] @@ -52,6 +54,7 @@ declare module 'vue' { // For TSX support declare global { const BackButton: typeof import('./src/components/back-button.vue')['default'] + const Divider: typeof import('./src/components/divider.vue')['default'] const Empty: typeof import('./src/components/empty.vue')['default'] const IonApp: typeof import('@ionic/vue')['IonApp'] const IonAvatar: typeof import('@ionic/vue')['IonAvatar'] @@ -78,6 +81,7 @@ declare global { const IonTabBar: typeof import('@ionic/vue')['IonTabBar'] const IonTabButton: typeof import('@ionic/vue')['IonTabButton'] const IonTabs: typeof import('@ionic/vue')['IonTabs'] + const IonText: typeof import('@ionic/vue')['IonText'] const IonTextarea: typeof import('@ionic/vue')['IonTextarea'] const IonTitle: typeof import('@ionic/vue')['IonTitle'] const IonToggle: typeof import('@ionic/vue')['IonToggle'] diff --git a/src/components/divider.vue b/src/components/divider.vue new file mode 100644 index 0000000..c6bf314 --- /dev/null +++ b/src/components/divider.vue @@ -0,0 +1,31 @@ + + + + + diff --git a/src/components/layout/default.vue b/src/components/layout/default.vue index 548a344..8f86f99 100644 --- a/src/components/layout/default.vue +++ b/src/components/layout/default.vue @@ -16,7 +16,7 @@ const { t } = useI18n(); - +