build(#10336): avoid intrinsic component names
This commit is contained in:
parent
49f8bb4974
commit
5ced8aef27
112 changed files with 668 additions and 668 deletions
|
|
@ -1,21 +1,21 @@
|
|||
import { Meta, StoryObj } from '@storybook/vue3';
|
||||
import notifications from './notifications.vue';
|
||||
import notifications_ from './notifications.vue';
|
||||
const meta = {
|
||||
title: 'pages/notifications',
|
||||
component: notifications,
|
||||
} satisfies Meta<typeof notifications>;
|
||||
component: notifications_,
|
||||
} satisfies Meta<typeof notifications_>;
|
||||
export const Default = {
|
||||
render(args, { argTypes }) {
|
||||
return {
|
||||
components: {
|
||||
notifications,
|
||||
notifications_,
|
||||
},
|
||||
props: Object.keys(argTypes),
|
||||
template: '<notifications v-bind="$props" />',
|
||||
template: '<notifications_ v-bind="$props" />',
|
||||
};
|
||||
},
|
||||
parameters: {
|
||||
layout: 'fullscreen',
|
||||
},
|
||||
} satisfies StoryObj<typeof notifications>;
|
||||
} satisfies StoryObj<typeof notifications_>;
|
||||
export default meta;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue