UNPKG

@nodegui/vue-nodegui

Version:

library to render native desktop applications using vue js

13 lines (9 loc) 255 B
import { WidgetConfig } from 'widgets/config'; import { VNView, ViewProps } from './VNView'; class ViewConfig implements WidgetConfig<ViewProps> { parentNode: any; createElement() { return new VNView(); } } export default ViewConfig;