Files
directus/app/src/components
rijkvanzanten 1486770c8f Re-add v-menu max-height
Fixes #306
2020-09-18 12:32:41 -04:00
..
2020-08-11 11:24:14 -04:00
2020-07-29 11:24:52 -04:00
2020-07-29 11:24:52 -04:00
2020-08-29 08:44:49 -04:00
2020-08-31 18:29:22 -04:00
2020-07-29 11:24:52 -04:00
2020-09-02 13:36:26 -04:00
2020-07-29 11:24:52 -04:00
2020-09-14 18:05:45 -04:00
2020-07-29 11:24:52 -04:00
2020-09-03 16:06:05 -04:00
2020-09-17 15:04:06 -04:00
2020-07-29 11:24:52 -04:00
2020-09-07 11:19:01 -04:00
2020-08-28 15:52:44 -04:00
2020-09-18 12:32:41 -04:00
2020-09-18 10:02:25 -04:00
2020-07-29 11:24:52 -04:00
2020-08-29 08:44:49 -04:00
2020-07-29 11:24:52 -04:00
2020-09-11 12:38:31 -04:00
2020-07-29 11:24:52 -04:00
2020-07-29 11:24:52 -04:00
2020-08-25 14:02:50 -04:00
2020-08-21 15:25:03 -06:00
2020-09-07 13:58:20 +02:00
2020-07-29 11:24:52 -04:00
2020-08-11 15:34:01 -04:00
2020-07-29 11:24:52 -04:00

Components

Components are custom elements that can reused in various other places.

Storybook / Tests

Every component should have an entry in Storybook, and should have unit tests where appropriate.

Naming

Components must always have a - in the name. This makes sure we don't run into any conflicts with HTML element names.

Base Components

The core-most base-components are prefixed with v- (for example v-icon and v-button). These components can not rely on any global store.

Private Components

Every now and again, it makes sense to split up a bigger component in smaller sub-parts for code maintainability and organization reasons. These "internal private components" are prefixed with a _ and should never be used standalone.