Files
privacy.sexy/src/presentation/Bootstrapping/Modules/TreeBootstrapper.ts
undergroundwires 4e7f244190 Initial commit
2019-12-31 16:23:45 +01:00

9 lines
260 B
TypeScript

import LiquorTree from 'liquor-tree';
import { VueConstructor, IVueBootstrapper } from './../IVueBootstrapper';
export class TreeBootstrapper implements IVueBootstrapper {
public bootstrap(vue: VueConstructor): void {
vue.use(LiquorTree);
}
}