Skip to content

Commit 78f812b

Browse files
committed
Use type prop in BButton
1 parent 6f2c89a commit 78f812b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/internal/BButton.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<button ref="button" type="button" :title="nativeTitle" :disabled="disabled" :name="name" :value="value"
2+
<button ref="button" :type="type" :title="nativeTitle" :disabled="disabled" :name="name" :value="value"
33
@click="click" @mouseover="mouseover" @mouseleave="mouseleave" @focus="focus" @blur="blur">
44
<slot>{{ text }}</slot>
55
</button>

0 commit comments

Comments
 (0)