Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/atif0075/v3-tab
The v3-tab package is a Vue 3 component that provides a tabbed interface for switching between groups of content. It comes with a simple API and built from scratch. It is fully unstyled so you can create your own design. However, some example styles are provided to get you started
https://github.com/atif0075/v3-tab
Last synced: 29 days ago
JSON representation
The v3-tab package is a Vue 3 component that provides a tabbed interface for switching between groups of content. It comes with a simple API and built from scratch. It is fully unstyled so you can create your own design. However, some example styles are provided to get you started
- Host: GitHub
- URL: https://github.com/atif0075/v3-tab
- Owner: atif0075
- Created: 2023-09-13T15:34:36.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-27T20:43:47.000Z (about 1 year ago)
- Last Synced: 2024-08-10T05:04:09.229Z (5 months ago)
- Language: Vue
- Homepage: https://v3-tab.vercel.app
- Size: 440 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Getting Started
## Introduction
The `v3-tab` package is a Vue 3 component that provides a tabbed interface for switching between groups of content. It comes with a simple API and built from scratch. It is fully unstyled so you can create your own design. However, some example styles are provided to get you started.
## Installation
This guide will walk you through the installation of the `v3-tab` package.
```bash
npm install v3-tab
``````bash
yarn add v3-tab
``````bash
pnpm add v3-tab
``````bash
bun add v3-tab
```## Importing
You can import the `v3-tab` component in your Vue 3 Single File Components (SFCs) like this:
```js
import v3Tab from "v3-tab";
```