1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<script>
import { ButtonComponent } from "@syncfusion/ej2-vue-buttons";
export default {
emits: ["submitForm", "click"],
components: { "ejs-button": ButtonComponent },
props: {
text: String,
class: {
type: String,
default: "e-btn e-outline",
},
type: String,
},
name: "BaseBtn",
data() {
return {
buttonType: this.type,
};
},
methods: {
emitEvent() {
if (this.type === "submit") {
this.$emit("submitForm");
} else {
this.$emit("click");
}
},
},
};
</script>
<template>
<ejs-button
:class="this.class"
:type="buttonType"
class="e-btn button"
@click="emitEvent"
>
{{ text }}
</ejs-button>
<slot></slot>
</template>
<style scoped>
.button {
margin: 5px;
text-transform: none;
}
button:hover {
}
</style>