An open API service indexing awesome lists of open source software.

https://github.com/evseevdev/vue-simple-tabs

Tabs component for vue.js
https://github.com/evseevdev/vue-simple-tabs

tabs vue vuejs2

Last synced: 27 days ago
JSON representation

Tabs component for vue.js

Awesome Lists containing this project

README

          

# vue-simple-tabs

Tabs component for vue.js

## Installation

NPM:

```bash
npm install --save vue-simple-tabs
```

Yarn:

```bash
yarn add vue-simple-tabs
```

## Usage

```html


Tab 1 content
Tab 2 content
Tab 3 content

import { Tabs, Tab } from 'vue-simple-tabs';

export default {
components: { Tabs, Tab }
};

```

## Events

You can add a handler for tab changed event.

Example:

```html


Tab 1
Tab 2
Tab 3

import { Tabs, Tab } from 'vue-simple-tabs';

export default {
components: { Tabs, Tab },
methods: {
tabChanged(tab) {
// Do something
}
}
};

```