Skip to content

Commit d95e6f3

Browse files
authored
Merge pull request #19 from PygmySlowLoris/fix/native-click
Fix #17 and document update
2 parents 5dfe1e0 + e75be87 commit d95e6f3

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ And
4343
| `icon-size` | String | <b>Default 'medium'</b> <br>Options: 'small', 'medium' or 'large'. |
4444
| `main-icon` | String | <b>Default 'add'</b> <br>Use icons from the material icon library. |
4545
| `main-tooltip` | String | <b>Default `null`</b> |
46-
| `actions` | Object | <b>[Details bellow](https://github.com/PygmySlowLoris/vue-fab/#actions)</b>
46+
| `actions` | Array | <b>[Details bellow](https://github.com/PygmySlowLoris/vue-fab/#actions)</b>
4747
| `fixed-tooltip` | Boolean | <b>Default 'false'</b><br> if true, it shows the tooltip beside the actions
4848

4949
### actions

src/FAB.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,9 @@
116116
fixedTooltip: {
117117
default: false
118118
},
119-
actions: {}
119+
actions: {
120+
default: () => []
121+
}
120122
},
121123
computed: {
122124
actionIconSize() {

0 commit comments

Comments
 (0)