vue-horizontal
Version:
An ultra simple pure vue horizontal layout for modern responsive web with zero dependencies.
13 lines (9 loc) • 322 B
TypeScript
import Vue, { PluginFunction, VueConstructor } from 'vue';
interface InstallFunction extends PluginFunction<any> {
installed?: boolean;
}
export interface InstallableComponent extends VueConstructor<Vue> {
install: InstallFunction;
}
declare const VueHorizontal: InstallableComponent;
export default VueHorizontal;