build(#10336): avoid intrinsic component names
This commit is contained in:
@@ -1,21 +1,21 @@
|
||||
import { Meta, StoryObj } from '@storybook/vue3';
|
||||
import email from './email.vue';
|
||||
import email_ from './email.vue';
|
||||
const meta = {
|
||||
title: 'pages/settings/email',
|
||||
component: email,
|
||||
} satisfies Meta<typeof email>;
|
||||
component: email_,
|
||||
} satisfies Meta<typeof email_>;
|
||||
export const Default = {
|
||||
render(args, { argTypes }) {
|
||||
return {
|
||||
components: {
|
||||
email,
|
||||
email_,
|
||||
},
|
||||
props: Object.keys(argTypes),
|
||||
template: '<email v-bind="$props" />',
|
||||
template: '<email_ v-bind="$props" />',
|
||||
};
|
||||
},
|
||||
parameters: {
|
||||
layout: 'fullscreen',
|
||||
},
|
||||
} satisfies StoryObj<typeof email>;
|
||||
} satisfies StoryObj<typeof email_>;
|
||||
export default meta;
|
||||
|
||||
Reference in New Issue
Block a user