Getting Started
Installation
Install VueTags with your favorite package manager:
bash
npm install @vuetags/inputsbash
yarn add @vuetags/inputsbash
pnpm add @vuetags/inputsbash
bun add @vuetags/inputsBasic 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>