-
Notifications
You must be signed in to change notification settings - Fork 6
/
fixed-action-button.vue
41 lines (39 loc) · 1.03 KB
/
fixed-action-button.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
<template lang="pug">
.container
fab(style="bottom:20px;right:20px")
a.btn-floating.btn-large(slot="fab") hover
li
a.btn-floating 1
li
a.btn-floating 2
fab(style="bottom:240px;right:20px",click-to-toggle)
a.btn-floating.btn-large(slot="fab") click
li
a.btn-floating 1
li
a.btn-floating 2
fab(style="bottom:20px;right:120px",horizontal)
a.btn-floating.btn-large(slot="fab") left
li
a.btn-floating 1
li
a.btn-floating 2
fab(style="top:20px;right:20px" other-side)
a.btn-floating.btn-large(slot="fab") bottom
li
a.btn-floating 1
li
a.btn-floating 2
fab(style="bottom:20px;left:20px",horizontal other-side)
a.btn-floating.btn-large(slot="fab") right
li
a.btn-floating 1
li
a.btn-floating 2
a(href="https://github.com/paulpflug/vue-materialize/blob/master/dev/fixed-action-button.vue") source
</template>
<script lang="coffee">
module.exports =
components:
"fab" : require "../src/fixed-action-button.coffee"
</script>