17 lines
341 B
TypeScript
17 lines
341 B
TypeScript
import { Meta, Story } from '@storybook/vue3';
|
|
import import_export from './import-export.vue';
|
|
const meta = {
|
|
title: 'pages/settings/import-export',
|
|
component: import_export,
|
|
};
|
|
export const Default = {
|
|
components: {
|
|
import_export,
|
|
},
|
|
template: '<import_export />',
|
|
parameters: {
|
|
layout: 'fullscreen',
|
|
},
|
|
};
|
|
export default meta;
|