We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b1e535 commit 82f0782Copy full SHA for 82f0782
src/FAB.vue
@@ -14,8 +14,8 @@
14
</ul>
15
</transition>
16
</div>
17
- <template v-if="ripple.show">
18
- <div v-ripple="ripple.color == 'light' ? 'rgba(255, 255, 255, 0.35)' : ''" @click="toggle = !toggle"
+ <template v-if="rippleShow">
+ <div v-ripple="rippleColor == 'light' ? 'rgba(255, 255, 255, 0.35)' : ''" @click="toggle = !toggle"
19
class="fab pointer" :style="{ 'background-color': bgColor }"
20
>
21
<i class="material-icons md-36" :class="{ rotate: toggle }">add</i>
@@ -54,13 +54,11 @@
54
zIndex: {
55
default: '999',
56
},
57
- ripple: {
58
- default() {
59
- return {
60
- show: true,
61
- color: 'light'
62
- }
63
+ rippleShow : {
+ default: true
+ },
+ rippleColor: {
+ default: 'light'
64
65
actions: {}
66
0 commit comments