diff --git a/docs/src/components/ExampleBox.vue b/docs/src/components/ExampleBox.vue index 400a770..c4ef9ea 100644 --- a/docs/src/components/ExampleBox.vue +++ b/docs/src/components/ExampleBox.vue @@ -17,7 +17,7 @@ - diff --git a/docs/src/components/PageContent.vue b/docs/src/components/PageContent.vue index b9797c3..665b240 100644 --- a/docs/src/components/PageContent.vue +++ b/docs/src/components/PageContent.vue @@ -1,7 +1,7 @@ diff --git a/src/components/mdInputContainer/mdAutocomplete.vue b/src/components/mdInputContainer/mdAutocomplete.vue index e699982..61a75d4 100644 --- a/src/components/mdInputContainer/mdAutocomplete.vue +++ b/src/components/mdInputContainer/mdAutocomplete.vue @@ -25,7 +25,7 @@ v-for="item in items" :key="item" @keyup.enter="hit(item)" - @click.native="hit(item)"> + @click="hit(item)"> {{ item[printAttribute] }} diff --git a/src/components/mdInputContainer/mdInputContainer.vue b/src/components/mdInputContainer/mdInputContainer.vue index ad491b7..aa3ef1a 100644 --- a/src/components/mdInputContainer/mdInputContainer.vue +++ b/src/components/mdInputContainer/mdInputContainer.vue @@ -4,11 +4,11 @@ {{ inputLength }} / {{ counterLength }} - + {{ showPassword ? 'visibility_off' : 'visibility' }} - + clear diff --git a/src/components/mdList/mdListItemButton.vue b/src/components/mdList/mdListItemButton.vue index 53cf723..3886607 100644 --- a/src/components/mdList/mdListItemButton.vue +++ b/src/components/mdList/mdListItemButton.vue @@ -4,7 +4,7 @@ - + diff --git a/src/components/mdList/mdListItemExpand.vue b/src/components/mdList/mdListItemExpand.vue index 9fb449b..a2cd850 100644 --- a/src/components/mdList/mdListItemExpand.vue +++ b/src/components/mdList/mdListItemExpand.vue @@ -6,7 +6,7 @@ keyboard_arrow_down - +
@@ -67,13 +67,14 @@ }); }); }, - toggleExpandList() { + toggleExpandList($event) { if (!this.mdExpandMultiple) { this.resetSiblings(); } this.calculatePadding(); this.active = !this.active; + this.$emit('click', $event); }, recalculateAfterChange() { this.transitionOff = true; diff --git a/src/components/mdList/mdListItemLink.vue b/src/components/mdList/mdListItemLink.vue index b59707f..6af936f 100644 --- a/src/components/mdList/mdListItemLink.vue +++ b/src/components/mdList/mdListItemLink.vue @@ -1,6 +1,6 @@