fix: typo

This commit is contained in:
Acid Chicken (硫酸鶏)
2023-03-20 16:31:50 +09:00
parent ca7d2081a2
commit 2ec608fdba
3 changed files with 6 additions and 6 deletions

View File

@@ -0,0 +1,21 @@
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;