build(#10336): update dependencies

This commit is contained in:
Acid Chicken (硫酸鶏)
2023-03-23 16:44:41 +09:00
parent bf5fff879f
commit c2d8759812
435 changed files with 6894 additions and 2953 deletions

View File

@@ -7,13 +7,24 @@ const meta = {
component: MkCheckbox,
} satisfies Meta<typeof MkCheckbox>;
export const Default = {
render(args, { argTypes }) {
render(args) {
return {
components: {
MkCheckbox,
},
props: Object.keys(argTypes),
template: '<MkCheckbox v-bind="$props" />',
setup() {
return {
args,
};
},
computed: {
props() {
return {
...args,
};
},
},
template: '<MkCheckbox v-bind="props" />',
};
},
parameters: {