Skip to content

Commit d299082

Browse files
committed
Lint fixes
1 parent b928c07 commit d299082

File tree

6 files changed

+24
-22
lines changed

6 files changed

+24
-22
lines changed

src/App.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
</div>
1111
</template>
1212
<script>
13-
import { FadeTransition } from 'vue2-transitions'
13+
import { FadeTransition } from "vue2-transitions";
1414
15-
export default {
16-
components: {
17-
FadeTransition
18-
}
19-
};
15+
export default {
16+
components: {
17+
FadeTransition
18+
}
19+
};
2020
</script>

src/components/BaseButton.vue

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,57 +25,57 @@ export default {
2525
tag: {
2626
type: String,
2727
default: "button",
28-
description: 'Button tag (default -> button)'
28+
description: "Button tag (default -> button)"
2929
},
3030
type: {
3131
type: String,
3232
default: "default",
33-
description: 'Button type (e,g primary, danger etc)'
33+
description: "Button type (e,g primary, danger etc)"
3434
},
3535
size: {
3636
type: String,
3737
default: "",
38-
description: 'Button size lg|sm'
38+
description: "Button size lg|sm"
3939
},
4040
textColor: {
4141
type: String,
4242
default: "",
43-
description: 'Button text color (e.g primary, danger etc)'
43+
description: "Button text color (e.g primary, danger etc)"
4444
},
4545
nativeType: {
4646
type: String,
4747
default: "button",
48-
description: 'Button native type (e.g submit,button etc)'
48+
description: "Button native type (e.g submit,button etc)"
4949
},
5050
icon: {
5151
type: String,
5252
default: "",
53-
description: 'Button icon'
53+
description: "Button icon"
5454
},
5555
text: {
5656
type: String,
5757
default: "",
58-
description: 'Button text in case not provided via default slot'
58+
description: "Button text in case not provided via default slot"
5959
},
6060
outline: {
6161
type: Boolean,
6262
default: false,
63-
description: 'Whether button style is outline'
63+
description: "Whether button style is outline"
6464
},
6565
rounded: {
6666
type: Boolean,
6767
default: false,
68-
description: 'Whether button style is rounded'
68+
description: "Whether button style is rounded"
6969
},
7070
iconOnly: {
7171
type: Boolean,
7272
default: false,
73-
description: 'Whether button contains only an icon'
73+
description: "Whether button contains only an icon"
7474
},
7575
block: {
7676
type: Boolean,
7777
default: false,
78-
description: 'Whether button is of block type'
78+
description: "Whether button is of block type"
7979
}
8080
},
8181
computed: {

src/components/BaseDropdown.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export default {
4747
},
4848
hideArrow: {
4949
type: Boolean,
50-
description: 'Whether dropdown arrow should be hidden'
50+
description: "Whether dropdown arrow should be hidden"
5151
},
5252
tag: {
5353
type: String,

src/components/BaseNav.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ export default {
5454
contentId: {
5555
type: [String, Number],
5656
default: Math.random().toString(),
57-
description: "Explicit id for the menu. By default it's a generated random number"
57+
description:
58+
"Explicit id for the menu. By default it's a generated random number"
5859
},
5960
effect: {
6061
type: String,

src/components/BasePagination.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ export default {
4646
},
4747
size: {
4848
type: String,
49-
default: '',
49+
default: "",
5050
description: "Pagination size"
5151
},
5252
align: {
5353
type: String,
54-
default: '',
54+
default: "",
5555
description: "Pagination alignment (e.g center|start|end)"
5656
}
5757
},

src/components/BaseProgress.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ export default {
3434
},
3535
animated: {
3636
type: Boolean,
37-
description: "Whether progress is animated (works only with `striped` prop together)"
37+
description:
38+
"Whether progress is animated (works only with `striped` prop together)"
3839
},
3940
label: {
4041
type: String,

0 commit comments

Comments
 (0)