@todovue/tv-button
Version:
A customizable button component for TODOvue, supporting multiple variants, sizes, and icon modes.
12 lines (11 loc) • 337 B
TypeScript
import { Plugin } from 'vue';
import { default as _TvButton } from './components/TvButton.vue';
declare const TvButton: typeof _TvButton & Plugin;
export { TvButton };
export declare const TvButtonPlugin: Plugin;
export default TvButton;
declare module 'vue' {
interface GlobalComponents {
TvButton: typeof TvButton;
}
}