- Move most GUI related code to /presentation - Move components to /components (separate from bootstrap and style) - Move shared components helpers to /components/shared - Rename Bootstrapping to bootstrapping to enforce same naming convention in /presentation
9 lines
303 B
TypeScript
9 lines
303 B
TypeScript
import VModal from 'vue-js-modal';
|
|
import { VueConstructor, IVueBootstrapper } from './../IVueBootstrapper';
|
|
|
|
export class VModalBootstrapper implements IVueBootstrapper {
|
|
public bootstrap(vue: VueConstructor): void {
|
|
vue.use(VModal, { dynamic: true, injectModalsContainer: true });
|
|
}
|
|
}
|