Skip to content

Commit 7d3e548

Browse files
committed
Updates
0 parents  commit 7d3e548

File tree

3 files changed

+55
-0
lines changed

3 files changed

+55
-0
lines changed

basic.vue

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<template lang="jade">
2+
.container
3+
fab(style="bottom:20px;right:20px")
4+
button(slot="fab") hover
5+
li
6+
button 1
7+
li
8+
button 2
9+
fab(style="bottom:20px;right:150px",close-on-click)
10+
button(slot="fab") hover / close-on-click
11+
li
12+
button 1
13+
li
14+
button 2
15+
fab(style="bottom:100px;right:20px",click-to-toggle)
16+
button(slot="fab") click
17+
li
18+
button 1
19+
li
20+
button 2
21+
fab(style="bottom:100px;right:150px",click-to-toggle,not-dismissable)
22+
button(slot="fab") click / not dissmissible
23+
li
24+
button 1
25+
li
26+
button 2
27+
fab(style="bottom:20px;right:350px",click-to-toggle,close-on-click)
28+
button(slot="fab") click / close-on-click
29+
li
30+
button 1
31+
li
32+
button 2
33+
a(href="https://github.com/vue-comps/vue-comps-dropdown/blob/master/dev/basic.vue") source
34+
</template>
35+
36+
<script lang="coffee">
37+
module.exports =
38+
components:
39+
"fab" : require "../src/fixed-action-button.vue"
40+
41+
</script>

index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<!DOCTYPE html><html lang="de"><head><meta charset="utf-8"></head><body id="app"><router-view v-bind:available-routes="availableRoutes"></router-view><script src="index_bundle.js"></script></body></html>

0 commit comments

Comments
 (0)