fix(primitives): component fixes and test cleanup

This commit is contained in:
2026-06-08 15:51:30 +07:00
parent 9ef8125965
commit def1db8b6c
12 changed files with 18 additions and 19 deletions
+2 -6
View File
@@ -5,13 +5,9 @@ declare global {
}
declare module 'vue' {
interface ComponentCustomProps {
[key: `data${string}`]: unknown;
}
type ComponentCustomProps = Record<`data${string}`, unknown>;
}
declare module 'vue' {
interface HTMLAttributes {
[key: `data-${string}`]: unknown;
}
type HTMLAttributes = Record<`data-${string}`, unknown>;
}