Skip to content

Getting Started

Installation

Install VueTags with your favorite package manager:

bash
npm install @vuetags/inputs
bash
yarn add @vuetags/inputs
bash
pnpm add @vuetags/inputs
bash
bun add @vuetags/inputs

Basic example

This is what using a component would look like. You can find more detailed descriptions in the pages under the Tags page.

vue
<script setup lang="ts">
import { TextInput } from '@vuetags/inputs';

const model = ref<string>('my special value');
</script>

<template>
    <text-input v-model="model" />
</template>
vue
<script setup>
import { TextInput } from '@vuetags/inputs';

const model = ref('my special value');
</script>

<template>
    <text-input v-model="model" />
</template>

Released under the MIT License.