UNPKG

@nodegui/vue-nodegui

Version:

library to render native desktop applications using vue js

13 lines (9 loc) 292 B
import { ScrollAreaProps, VNScrollArea } from './VNScrollArea'; import { WidgetConfig } from '../config'; class ScrollAreaConfig implements WidgetConfig<ScrollAreaProps> { parentNode: any; createElement() { return new VNScrollArea(); } } export default ScrollAreaConfig;