mirror of
https://codeberg.org/yeentown/barkey.git
synced 2026-01-12 07:28:33 +00:00
13 lines
253 B
TypeScript
13 lines
253 B
TypeScript
import { Meta, Story } from '@storybook/vue3';
|
|
import explore from './explore.vue';
|
|
const meta = {
|
|
title: 'pages/explore',
|
|
component: explore,
|
|
};
|
|
export const Default = {
|
|
components: {
|
|
explore,
|
|
},
|
|
template: '<explore />',
|
|
};
|
|
export default meta;
|