add storybook

This commit is contained in:
2023-10-11 10:17:11 +03:00
parent 86f60998d3
commit 97cf30c03e
176 changed files with 4997 additions and 376 deletions

21
docs/components/Card.vue.d.ts vendored Normal file
View File

@@ -0,0 +1,21 @@
export type TUiCardProps = {
title?: string;
};
declare const _default: __VLS_WithTemplateSlots<import('./vue/dist/vue.esm-bundler.js').DefineComponent<{
title: {
type: import('./vue/dist/vue.esm-bundler.js').PropType<string>;
};
}, {}, unknown, {}, {}, import('./vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('./vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {}, string, import('./vue/dist/vue.esm-bundler.js').VNodeProps & import('./vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('./vue/dist/vue.esm-bundler.js').ComponentCustomProps, Readonly<import('./vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
title: {
type: import('./vue/dist/vue.esm-bundler.js').PropType<string>;
};
}>>, {}, {}>, {
default?(_: {}): any;
actions?(_: {}): any;
}>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};