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

https://github.com/ehsan-shv/vb-input

Vue3 and Nuxt3 reusable input component.
https://github.com/ehsan-shv/vb-input

input nuxt3 typescript vue vuejs

Last synced: about 1 month ago
JSON representation

Vue3 and Nuxt3 reusable input component.

Awesome Lists containing this project

README

          

# vb-input

Version

**Vue 3 input component.**

> Support Vue3 and Nuxt3 and type-safe. [Demo](https://ehsan-shv.github.io/vb-input/)

## Documentation

Check out docs at [docs](https://ehsan-shv.github.io/vb-input-docs/).

## Types

- text
- number
- password
- tel
- email
- search
- textarea

## Installation

```bash
npm i vb-input
```

## Import to component

```vue

import { defineComponent, ref } from 'vue';
import VBInput from 'vb-input';
export default defineComponent({
components: {
VBInput,
},
setup() {
const name = ref('');

return { name };
},
});

```