2023-03-19 13:22:14 +00:00
|
|
|
import { Meta, Story } from '@storybook/vue3';
|
|
|
|
import timeline_tutorial from './timeline.tutorial.vue';
|
|
|
|
const meta = {
|
|
|
|
title: 'pages/timeline.tutorial',
|
|
|
|
component: timeline_tutorial,
|
|
|
|
};
|
|
|
|
export const Default = {
|
|
|
|
components: {
|
|
|
|
timeline_tutorial,
|
|
|
|
},
|
2023-03-19 13:31:18 +00:00
|
|
|
template: '<timeline_tutorial />',
|
2023-03-19 13:22:14 +00:00
|
|
|
};
|
|
|
|
export default meta;
|