UNPKG

@nodegui/vue-nodegui

Version:

library to render native desktop applications using vue js

13 lines (9 loc) 242 B
import { WidgetConfig } from '../config'; import { VNDial, DialProps } from './VNDial'; class DialConfig implements WidgetConfig<DialProps> { parentNode: any; createElement() { return new VNDial(); } } export default DialConfig;