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:
Jacob Rienstra
2020-02-24 18:17:53 -05:00
committed by GitHub
parent 139ced06f5
commit a6d17706e2
14 changed files with 672 additions and 4 deletions

View File

@@ -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);