mirror of
https://github.com/directus/directus.git
synced 2026-04-03 03:00:39 -04:00
List Component MVP (#119)
* added empty files * barest of bones * density works * density and nav * hover kinda works for links, still need to ccheck click events and also die * styling kinda working now * readme and testing * small tweaks * put back whitespace * actually fixed * Add stylelint prettier to yarn lock * Register list / list item globally * Let names be inferred through file * Match object structure in props * Cleanup readme Co-authored-by: Rijk van Zanten <rijkvanzanten@me.com>
This commit is contained in:
@@ -7,6 +7,7 @@ import VChip from './v-chip/';
|
||||
import VHover from './v-hover/';
|
||||
import VIcon from './v-icon/';
|
||||
import VInput from './v-input/';
|
||||
import VList, { VListItem, VListItemContent } from './v-list/';
|
||||
import VOverlay from './v-overlay/';
|
||||
import VProgressLinear from './v-progress/linear/';
|
||||
import VProgressCircular from './v-progress/circular/';
|
||||
@@ -22,6 +23,9 @@ Vue.component('v-chip', VChip);
|
||||
Vue.component('v-hover', VHover);
|
||||
Vue.component('v-icon', VIcon);
|
||||
Vue.component('v-input', VInput);
|
||||
Vue.component('v-list', VList);
|
||||
Vue.component('v-list-item', VListItem);
|
||||
Vue.component('v-list-item-content', VListItemContent);
|
||||
Vue.component('v-overlay', VOverlay);
|
||||
Vue.component('v-progress-linear', VProgressLinear);
|
||||
Vue.component('v-progress-circular', VProgressCircular);
|
||||
|
||||
Reference in New Issue
Block a user