Files
directus/app/src/displays
Rijk van Zanten 81fc8443df Don't wrap text in nav (#4035)
* Move v-list-item-text to v-text-overflow, use in tables

* Fix type issue
2021-02-12 16:39:17 -05:00
..
2021-01-28 17:39:28 -05:00
2020-11-17 12:17:32 -05:00
2020-11-11 17:11:06 -05:00
2021-02-12 16:39:17 -05:00
2020-09-08 17:37:26 +02:00
2021-02-02 11:55:04 -05:00
2021-01-19 12:11:16 -05:00
2020-12-11 18:10:14 -05:00
2020-09-09 09:31:27 +02:00
2020-09-09 09:31:27 +02:00
2020-08-11 16:18:57 -04:00
2020-11-05 18:22:15 -05:00
2020-07-29 11:24:52 -04:00
2020-09-03 16:14:53 -04:00
2020-07-29 11:24:52 -04:00
2020-12-08 02:22:00 +02:00

Displays

Displays are functions / components that are used in the system to display data. They are small wrappers that help display values in a matter that makes sense for the saved value, for example rendering a color swatch for a saved color value.

Functions vs Components

A Display can either be a function, or a component. The function gets the value, and returns a string of how to display this value. A Vue component similarly gets the value through the value prop, and can render whatever makes sense for the value.