diff --git a/resources/js/components/SMButton.vue b/resources/js/components/SMButton.vue index a90f6fe..0e3428e 100644 --- a/resources/js/components/SMButton.vue +++ b/resources/js/components/SMButton.vue @@ -3,7 +3,12 @@ v-if="href.length > 0 || typeof to == 'string'" :href="href" :disabled="disabled" - :class="['button', 'prevent-select', classType]" + :class="[ + 'button', + 'prevent-select', + classType, + { 'button-block': block }, + ]" :type="buttonType"> {{ label }} @@ -11,7 +16,12 @@