tab, toast grid 추가

This commit is contained in:
2025-08-14 11:00:48 +09:00
parent 332b4b2d4b
commit fd6fe43498
15 changed files with 1044 additions and 54 deletions

9
types/vue3-tui-grid.d.ts vendored Normal file
View File

@@ -0,0 +1,9 @@
// src/types/vue3-tui-grid.d.ts
declare module 'vue3-tui-grid' {
import type { Plugin } from 'vue';
const TuiGrid: Plugin;
export default TuiGrid;
export type TuiGridElement = any;
export type GridEvent = any;
}