Skip to content

Commit

Permalink
style: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
KaelWD committed Oct 25, 2018
1 parent c2c0a99 commit 1408839
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/examples/selection-controls/labelSlot.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div slot="label">
I agree that
<v-tooltip bottom>
<a slot="activator" @click.stop target="_blank" href="http://vuetifyjs.com">Vuetify</a>
<a slot="activator" target="_blank" href="http://vuetifyjs.com" @click.stop>Vuetify</a>
Opens in new window
</v-tooltip>
is awesome
Expand All @@ -23,7 +23,7 @@

<v-switch v-model="switchMe">
<template slot="label">
Turn on the progress: <v-progress-circular size="24" class="ml-2" :indeterminate="switchMe" :value="0"></v-progress-circular>
Turn on the progress: <v-progress-circular :indeterminate="switchMe" :value="0" size="24" class="ml-2"></v-progress-circular>
</template>
</v-switch>
</v-container>
Expand Down

0 comments on commit 1408839

Please sign in to comment.