File tree Expand file tree Collapse file tree 1 file changed +34
-1
lines changed Expand file tree Collapse file tree 1 file changed +34
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
Tabs component for Vue Bulma.
4
4
5
+
6
+ ## Installation
7
+
8
+ ``` console
9
+ $ npm install vue-bulma-tabs --save
10
+ ```
11
+
12
+
13
+ ## Examples
14
+
15
+ ``` vue
16
+ <template>
17
+ <tabs animation="slide" :only-fade="false">
18
+ <tab-pane label="Pictures">Pictures Tab</tab-pane>
19
+ <tab-pane label="Music">Music Tab</tab-pane>
20
+ <tab-pane label="Videos" selected>Video Tab</tab-pane>
21
+ <tab-pane label="Documents" disabled>Document Tab</tab-pane>
22
+ </tabs>
23
+ </template>
24
+
25
+ <script>
26
+ import { Tabs, TabPane } from 'vue-bulma-tabs'
27
+
28
+ export default {
29
+ components: {
30
+ Tabs,
31
+ TabPane
32
+ }
33
+ }
34
+ </script>
35
+ ```
36
+
37
+
5
38
## Badges
6
39
7
40
![ ] ( https://img.shields.io/badge/license-MIT-blue.svg )
8
41
![ ] ( https://img.shields.io/badge/status-stable-green.svg )
9
42
10
43
---
11
44
12
- > [ fundon.me] ( https://fundun .me )   ;· ;  ;
45
+ > [ fundon.me] ( https://fundon .me )   ;· ;  ;
13
46
> GitHub [ @fundon ] ( https://github.com/fundon )   ;· ;  ;
14
47
> Twitter [ @_ fundon] ( https://twitter.com/_fundon )
15
48
You can’t perform that action at this time.
0 commit comments