import Vue, { PluginObject } from 'vue'; import { Component } from 'vue-property-decorator'; import { STEPPERS_NAME } from '../component-names'; import WithRender from './steppers.sandbox.html'; import SteppersPlugin from './steppers'; @WithRender @Component export class MSteppersSandbox extends Vue { } const SteppersSandboxPlugin: PluginObject = { install(v, options): void { v.use(SteppersPlugin); v.component(`${STEPPERS_NAME}-sandbox`, MSteppersSandbox); } }; export default SteppersSandboxPlugin;