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
No known key found for this signature in database
GPG key ID: 3E87B98A3F6BAB99
112 changed files with 668 additions and 668 deletions

View file

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