build(#10336): impl SatisfiesExpression

This commit is contained in:
Acid Chicken (硫酸鶏) 2023-03-20 23:07:13 +09:00
parent 2eecb8e876
commit bdbbb92ff6
No known key found for this signature in database
GPG key ID: 3E87B98A3F6BAB99
431 changed files with 1414 additions and 1383 deletions

View file

@ -1,9 +1,10 @@
import { Meta, Story } from '@storybook/vue3';
import { Meta } from '@storybook/vue3';
const meta = {
title: 'components/MkButton',
component: MkButton,
};
} satisfies Meta<typeof MkButton>;
export default meta;
import { StoryObj } from '@storybook/vue3';
import MkButton from './MkButton.vue';
export const Default = {
render(args, { argTypes }) {
@ -18,4 +19,4 @@ export const Default = {
parameters: {
layout: 'centered',
},
};
} satisfies StoryObj<typeof MkButton>;