1. vue-bulma-tabs
Tabs component for Vue Bulma
vue-bulma-tabs
Package: vue-bulma-tabs
Created by: vue-bulma
Last modified: Tue, 28 Jun 2022 19:06:01 GMT
Version: 1.1.3
License: MIT
Downloads: 399
Repository: https://github.com/vue-bulma/tabs

Install

npm install vue-bulma-tabs
yarn add vue-bulma-tabs

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

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin