2022-12-09 20:44:55 +01:00

14 lines
380 B
JavaScript

import { global as globalThis } from '@storybook/global';
import Vue from 'vue';
import Button from './Button.vue';
import Pre from './Pre.vue';
import Form from './Form.vue';
import Html from './Html.vue';
globalThis.Components = { Button, Pre, Form, Html };
globalThis.storybookRenderer = 'vue';
// test globally-registered components
Vue.component('global-button', Button);