vue-bulma / tabs

Tabs Component for Vue Bulma

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Tabs

Tabs component for Vue Bulma.

Installation

$ npm install vue-bulma-tabs --save

Examples

<template>
  <tabs animation="slide" :only-fade="false">
    <tab-pane label="Pictures">Pictures Tab</tab-pane>
    <tab-pane label="Music">Music Tab</tab-pane>
    <tab-pane label="Videos" selected>Video Tab</tab-pane>
    <tab-pane label="Documents" disabled>Document Tab</tab-pane>
  </tabs>
</template>

<script>
import { Tabs, TabPane } from 'vue-bulma-tabs'

export default {
  components: {
    Tabs,
    TabPane
  }
}
</script>

Badges


fundon.me  ·  GitHub @fundon  ·  Twitter @_fundon

About

Tabs Component for Vue Bulma

License:MIT License


Languages

Language:Vue 98.5%Language:JavaScript 1.5%