From f2f792aa120e1e95ab706e1ad58c788973cb33b1 Mon Sep 17 00:00:00 2001 From: HoshinoSuzumi Date: Sun, 15 Sep 2024 02:46:21 +0800 Subject: [PATCH] feat: Add typings for uni-components Add typings for the uni-components library to enable better type checking and editor support. --- components.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components.d.ts b/components.d.ts index 4abfee0..9a60117 100644 --- a/components.d.ts +++ b/components.d.ts @@ -8,7 +8,7 @@ export {} declare module 'vue' { export interface GlobalComponents { PageWrapper: typeof import('./src/components/page-wrapper.vue')['default'] - Tabbar: typeof import('./src/components/Tabbar.vue')['default'] + TabBar: typeof import('./src/components/TabBar.vue')['default'] WdButton: typeof import('wot-design-uni/components/wd-button/wd-button.vue')['default'] WdCell: typeof import('wot-design-uni/components/wd-cell/wd-cell.vue')['default'] WdCellGroup: typeof import('wot-design-uni/components/wd-cell-group/wd-cell-group.vue')['default']