build(#10336): update dependencies
This commit is contained in:
parent
bf5fff879f
commit
c2d8759812
435 changed files with 6894 additions and 2953 deletions
|
@ -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: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue