mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
14 lines
380 B
JavaScript
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);
|