build(#10336): avoid intrinsic component names

This commit is contained in:
Acid Chicken (硫酸鶏)
2023-03-21 13:12:30 +09:00
parent 49f8bb4974
commit 5ced8aef27
112 changed files with 668 additions and 668 deletions

View File

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