14 lines
289 B
TypeScript
14 lines
289 B
TypeScript
import { Meta, Story } from '@storybook/vue3';
|
|
import notifications from './notifications.vue';
|
|
const meta = {
|
|
title: 'pages/notifications',
|
|
component: notifications,
|
|
};
|
|
export const Default = {
|
|
components: {
|
|
notifications,
|
|
},
|
|
template: '<notifications />',
|
|
};
|
|
export default meta;
|