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

14 lines
489 B
JavaScript

import { global as globalThis } from '@storybook/global';
// eslint-disable-next-line import/no-extraneous-dependencies
import { setup } from '@storybook/vue3';
// TODO: I'd like to be able to export rather than imperatively calling an imported function
// export const setup = (app) => {
// app.component('GlobalButton', Button);
// };
setup((app) => {
// This adds a component that can be used globally in stories
app.component('GlobalButton', globalThis.Components.Button);
});