1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-24 02:14:04 +02:00

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