Skip to content

Commit 378b932

Browse files
authored
fix(button): Minor code update
Use regular single quotes instead of backticks
1 parent f104dc0 commit 378b932

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/components/button.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export default {
6262
return (this.href || this.to) ? 'b-link' : 'button';
6363
},
6464
btnBlock() {
65-
return this.block ? `btn-block` : '';
65+
return this.block ? 'btn-block' : '';
6666
},
6767
btnVariant() {
6868
return this.variant ? `btn-${this.variant}` : `btn-secondary`;

0 commit comments

Comments
 (0)