UNPKG

@nodegui/vue-nodegui

Version:

library to render native desktop applications using vue js

13 lines (9 loc) 264 B
import { VNButton, ButtonProps } from './VNButton'; import { WidgetConfig } from '../config'; class ButtonConfig implements WidgetConfig<ButtonProps> { parentNode: any; createElement() { return new VNButton(); } } export default ButtonConfig;