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