1
0
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:
Acid Chicken (硫酸鶏)
2023-03-19 22:22:14 +09:00
parent 4a989f7ebb
commit 1dfcca7b9c
437 changed files with 10295 additions and 154 deletions

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;