UNPKG

@nodegui/vue-nodegui

Version:

library to render native desktop applications using vue js

13 lines (9 loc) 278 B
import { VNCheckbox, CheckboxProps } from './VNCheckbox'; import { WidgetConfig } from '../config'; class CheckboxConfig implements WidgetConfig<CheckboxProps> { parentNode: any; createElement() { return new VNCheckbox(); } } export default CheckboxConfig;