-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathApp.vue
46 lines (43 loc) · 1.01 KB
/
App.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
<template>
<DxDropDownButton
text="Sandra Johnson"
icon="user"
:items="actions"
key-expr="id"
display-expr="text"
@item-click="logAction"
:split-button="true"
@button-click="logButtonClick"
:drop-down-options="dropDownOptions"
/>
</template>
<script>
import DxDropDownButton from 'devextreme-vue/drop-down-button';
const actions = [
{ id: 1, text: 'My profile', icon: 'user' },
{ id: 2, text: 'Messages', icon: 'email' },
{ id: 3, text: 'Contacts', icon: 'group' },
{ id: 4, text: 'Log out', icon: 'runner' }
];
export default {
components: {
DxDropDownButton
},
data() {
return {
actions,
dropDownOptions: {
height: 150
}
};
},
methods: {
logAction(e) {
console.log(e.itemData.text + ' was clicked');
},
logButtonClick() {
console.log('Main button was clicked');
}
}
};
</script>