build(#10336): init

This commit is contained in:
Acid Chicken (硫酸鶏) 2023-03-19 22:22:14 +09:00
parent 4a989f7ebb
commit 1dfcca7b9c
No known key found for this signature in database
GPG key ID: 3E87B98A3F6BAB99
437 changed files with 10295 additions and 154 deletions

View file

@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import api_console from './api-console.vue';
const meta = {
title: 'pages/api-console',
component: api_console,
};
export const Default = {
components: {
api_console,
},
template: '<api-console />',
};
export default meta;