fix: typo

This commit is contained in:
Acid Chicken (硫酸鶏) 2023-03-20 16:31:50 +09:00
parent ca7d2081a2
commit 2ec608fdba
No known key found for this signature in database
GPG key ID: 3E87B98A3F6BAB99
3 changed files with 6 additions and 6 deletions

View file

@ -1,21 +0,0 @@
import { Meta, Story } from '@storybook/vue3';
import MkYoutubePlayer from './MkYoutubePlayer.vue';
const meta = {
title: 'components/MkYoutubePlayer',
component: MkYoutubePlayer,
};
export const Default = {
render(args, { argTypes }) {
return {
components: {
MkYoutubePlayer,
},
props: Object.keys(argTypes),
template: '<MkYoutubePlayer v-bind="$props" />',
};
},
parameters: {
layout: 'centered',
},
};
export default meta;