Loading .prettierrc.json +1 −1 Original line number Diff line number Diff line Loading @@ -3,5 +3,5 @@ "$schema": "https://json.schemastore.org/prettierrc", "semi": true, "singleQuote": true, "printWidth": 100 "printWidth": 120 } .storybook/main.ts +4 −9 Original line number Diff line number Diff line import type { StorybookConfig } from '@storybook/vue3-vite' import type { StorybookConfig } from '@storybook/vue3-vite'; const config: StorybookConfig = { stories: ['../src/**/*.stories.@(js|jsx|mjs|ts|tsx)'], addons: [ '@storybook/addon-onboarding', '@storybook/addon-essentials', '@chromatic-com/storybook', '@storybook/addon-interactions', ], addons: ['@storybook/addon-essentials', '@chromatic-com/storybook', '@storybook/addon-interactions'], framework: { name: '@storybook/vue3-vite', options: {}, }, } export default config }; export default config; .yarn/install-state.gz 0 → 100644 +596 KiB File added.No diff preview for this file type. View file .yarnrc.yml 0 → 100644 +1 −0 Original line number Diff line number Diff line nodeLinker: node-modules README.md +11 −4 Original line number Diff line number Diff line Loading @@ -5,22 +5,29 @@ > лёгкости и простоте. ## Список компонентов: - Table; - TreeList; - MenuDial; - Popup; - Slider; - Drawer; - Modal; - Knob; - Select; - SelectButton; - Button; - ToggleSwitch; - Tag; - Checkbox; - Divider. --- ## Общая информация ### Components count: 10 ### Bundle size: 254.6KB ### Components count: 15 ### Bundle size: 292.7KB --- ## Важные моменты при разработке ### Общее начало шаблона для компонентов: ``` Loading @@ -29,8 +36,8 @@ const props = withDefaults(defineProps<IProps>(), { }); const emit = defineEmits(['']); const visible = defineModel(''); watch(, () => {}); const computed = computed(() => ); // watch(, () => {}); // const computed1 = computed(() => ); ``` - I*Componentname*Props вместо ```IProps```; - watchers после defineModel; Loading Loading
.prettierrc.json +1 −1 Original line number Diff line number Diff line Loading @@ -3,5 +3,5 @@ "$schema": "https://json.schemastore.org/prettierrc", "semi": true, "singleQuote": true, "printWidth": 100 "printWidth": 120 }
.storybook/main.ts +4 −9 Original line number Diff line number Diff line import type { StorybookConfig } from '@storybook/vue3-vite' import type { StorybookConfig } from '@storybook/vue3-vite'; const config: StorybookConfig = { stories: ['../src/**/*.stories.@(js|jsx|mjs|ts|tsx)'], addons: [ '@storybook/addon-onboarding', '@storybook/addon-essentials', '@chromatic-com/storybook', '@storybook/addon-interactions', ], addons: ['@storybook/addon-essentials', '@chromatic-com/storybook', '@storybook/addon-interactions'], framework: { name: '@storybook/vue3-vite', options: {}, }, } export default config }; export default config;
.yarnrc.yml 0 → 100644 +1 −0 Original line number Diff line number Diff line nodeLinker: node-modules
README.md +11 −4 Original line number Diff line number Diff line Loading @@ -5,22 +5,29 @@ > лёгкости и простоте. ## Список компонентов: - Table; - TreeList; - MenuDial; - Popup; - Slider; - Drawer; - Modal; - Knob; - Select; - SelectButton; - Button; - ToggleSwitch; - Tag; - Checkbox; - Divider. --- ## Общая информация ### Components count: 10 ### Bundle size: 254.6KB ### Components count: 15 ### Bundle size: 292.7KB --- ## Важные моменты при разработке ### Общее начало шаблона для компонентов: ``` Loading @@ -29,8 +36,8 @@ const props = withDefaults(defineProps<IProps>(), { }); const emit = defineEmits(['']); const visible = defineModel(''); watch(, () => {}); const computed = computed(() => ); // watch(, () => {}); // const computed1 = computed(() => ); ``` - I*Componentname*Props вместо ```IProps```; - watchers после defineModel; Loading