Skip to content

Commit 5d23f8f

Browse files
author
Pooya Parsa
committed
ESLint
1 parent ec2067b commit 5d23f8f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/nuxt/components/componentdoc.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,9 @@
8080
props_items() {
8181
const component = Vue.options.components[this.component];
8282
if (!component) {
83-
return {}
83+
return {};
8484
}
85+
8586
const props = component.options.props;
8687
return Object.keys(props).map(prop => {
8788
const p = props[prop];

lib/components/button-group.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@
3030
}
3131
}
3232
};
33-
</script>
33+
</script>

lib/components/carousel.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
default: false
6464
},
6565
height: {
66-
type: String,
66+
type: String
6767
},
6868
background: {
6969
type: String
@@ -160,7 +160,6 @@
160160
161161
currentSlide.classList.remove(direction.current);
162162
nextSlide.classList.remove(direction.next, direction.overlay);
163-
164163
}, 500);
165164
}
166165
},

0 commit comments

Comments
 (0)