mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-26 00:54:06 +02:00
build(#10336): init
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import { Meta, Story } from '@storybook/vue3';
|
||||
import page_editor_el_image from './page-editor.el.image.vue';
|
||||
const meta = {
|
||||
title: 'pages/page-editor/els/page-editor.el.image',
|
||||
component: page_editor_el_image,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
page_editor_el_image,
|
||||
},
|
||||
template: '<page-editor.el.image />',
|
||||
};
|
||||
export default meta;
|
||||
@@ -0,0 +1,13 @@
|
||||
import { Meta, Story } from '@storybook/vue3';
|
||||
import page_editor_el_note from './page-editor.el.note.vue';
|
||||
const meta = {
|
||||
title: 'pages/page-editor/els/page-editor.el.note',
|
||||
component: page_editor_el_note,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
page_editor_el_note,
|
||||
},
|
||||
template: '<page-editor.el.note />',
|
||||
};
|
||||
export default meta;
|
||||
@@ -0,0 +1,13 @@
|
||||
import { Meta, Story } from '@storybook/vue3';
|
||||
import page_editor_el_section from './page-editor.el.section.vue';
|
||||
const meta = {
|
||||
title: 'pages/page-editor/els/page-editor.el.section',
|
||||
component: page_editor_el_section,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
page_editor_el_section,
|
||||
},
|
||||
template: '<page-editor.el.section />',
|
||||
};
|
||||
export default meta;
|
||||
@@ -0,0 +1,13 @@
|
||||
import { Meta, Story } from '@storybook/vue3';
|
||||
import page_editor_el_text from './page-editor.el.text.vue';
|
||||
const meta = {
|
||||
title: 'pages/page-editor/els/page-editor.el.text',
|
||||
component: page_editor_el_text,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
page_editor_el_text,
|
||||
},
|
||||
template: '<page-editor.el.text />',
|
||||
};
|
||||
export default meta;
|
||||
@@ -0,0 +1,13 @@
|
||||
import { Meta, Story } from '@storybook/vue3';
|
||||
import page_editor_blocks from './page-editor.blocks.vue';
|
||||
const meta = {
|
||||
title: 'pages/page-editor/page-editor.blocks',
|
||||
component: page_editor_blocks,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
page_editor_blocks,
|
||||
},
|
||||
template: '<page-editor.blocks />',
|
||||
};
|
||||
export default meta;
|
||||
@@ -0,0 +1,13 @@
|
||||
import { Meta, Story } from '@storybook/vue3';
|
||||
import page_editor_container from './page-editor.container.vue';
|
||||
const meta = {
|
||||
title: 'pages/page-editor/page-editor.container',
|
||||
component: page_editor_container,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
page_editor_container,
|
||||
},
|
||||
template: '<page-editor.container />',
|
||||
};
|
||||
export default meta;
|
||||
@@ -0,0 +1,13 @@
|
||||
import { Meta, Story } from '@storybook/vue3';
|
||||
import page_editor from './page-editor.vue';
|
||||
const meta = {
|
||||
title: 'pages/page-editor/page-editor',
|
||||
component: page_editor,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
page_editor,
|
||||
},
|
||||
template: '<page-editor />',
|
||||
};
|
||||
export default meta;
|
||||
Reference in New Issue
Block a user