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