# How to create simple tabs system with VueJS

Today I want to share with you an easy way to build a simple tab system using VueJS.

As a starter, I am using Vue/cli 3

## Instructions

    for installing vue-cli:

```bash
npm i -g @vue/cli
```

    for creating a new project:

```bash
vue create <project-name>
```

    for running the project:

```bash
cd <project-name>
npm run serve
```

---

## YouTube

[![Vue Tabs](https://cdn.hashnode.com/res/hashnode/image/upload/v1681119350804/aa47d045-147a-45b7-9f9e-cd936ad3b2b7.jpeg align="left")](https://www.youtube.com/watch?v=rkobOWi7htg)

## Get the code

#### [GitHub](https://github.com/polettoweb/vue-tabs)     [CodeSandbox](https://codesandbox.io/s/vue-template-xxtek)
