-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathButtonMixin.vue
71 lines (63 loc) · 1.27 KB
/
ButtonMixin.vue
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<template>
<div class="wrapper">
<Button id="dog-name-button" @click.native="pushButton">Push Me</Button>
<hr />
<p class="text-name">Next Dog Name: {{ dogName }}</p>
</div>
</template>
<script>
// You can also use 'exports.default = {}' style module exports.
import Themeable from "mixins/Themeable";
import EventsEnum from "basic/EventsEnum";
const DEFAULT = "FULL";
export default {
mixins: [Themeable],
props: {
test: [String, Boolean],
/**
* Define the kind of the button. Possible values are defined in Button.kind property ("full"|"empty"|"link")
* Default is full
*/
kind: {
type: [String, Boolean],
default: DEFAULT,
validator: (kind) => true
}
},
data() {
return { numClicks: 0, dogName: dogNames[0] };
},
methods: {
pushButton() {
/**
* Success event.
*
* @event success
* @type {object}
*/
this.$emit('success', {
demo: 'example'
});
/**
* Success event.
*
* @event error
* @type {object}
*/
this.$emit(EventsEnum.error, {
demo: 'example'
});
this.numClicks += 1;
//this.dogName = dogNames[this.numClicks];
}
}
}
</script>
<style scoped>
.wrapper {
background: blue;
}
.text-name {
color: red;
}
</style>