1
0

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