build(#10336): update dependencies

This commit is contained in:
Acid Chicken (硫酸鶏) 2023-03-23 16:44:41 +09:00
parent bf5fff879f
commit c2d8759812
No known key found for this signature in database
GPG key ID: 3E87B98A3F6BAB99
435 changed files with 6894 additions and 2953 deletions

View file

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