fix eslint warnings

This commit is contained in:
taehoon 2019-11-08 11:14:01 -05:00
parent 632773ba91
commit c1478b0887
2 changed files with 5 additions and 3 deletions

View file

@ -12,8 +12,8 @@
>
<i class="checkbox-indicator" />
<span
class="label"
v-if="!!$slots.default"
class="label"
>
<slot />
</span>

View file

@ -12,11 +12,13 @@ export default Vue.component('tab-switcher', {
},
onSwitch: {
required: false,
type: Function
type: Function,
default: undefined
},
activeTab: {
required: false,
type: String
type: String,
default: undefined
},
scrollableTabs: {
required: false,