New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

vue-nav-tabs

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-nav-tabs

A vue based tab component

  • 0.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1.7K
decreased by-34.7%
Maintainers
1
Weekly downloads
 
Created
Source

(WIP) Vue-tabs

Demo

Basic demo WIP

Usage

Vue.use(VueTabs)
<vue-tabs>
    <tab-content title="First tab">
      First tab content
    </tab-content>

    <tab-content title="Second tab">
      Second tab content
    </tab-content>

    <tab-content title="Third tab">
      Third tab content
    </tab-content>
</vue-tabs>

Props

Vue-tabs props

props: {
  title: {
    type: String,
    default: ''
  },
  /***
   * Icon name for the upper circle corresponding to the tab
   * Supports themify icons only for now.
   */
  icon: {
    type: String,
    default: ''
  },
  /***
   * Function to execute before tab switch. Return value must be boolean
   * If the return result is false, tab switch is restricted
   */
  beforeChange: {
    type: Function
  },
  route: {
    type: [String, Object]
  }
}

Tab-content props

props: {
  startIndex: {
    type: Number,
    default: 0
  }
}

Keywords

FAQs

Package last updated on 25 Apr 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc