VuiTagInput
PROThe VuiTagInput
component helps you to simply create an input field for creating multiple tags. It uses react-tag-input in base and you can use all of its props for VuiTagInput
.
The below codes are editable and you can modify them the way you want directly from your browser, please use the green button or the ctrl + s to save the changes.
Demo
The below code exmaple of VuiTagInput
, is not working for adding or removing tags you can only test the below props using it. See the complete example of VuiTagInput
on the bottom of that page.
// Vision UI Dashboard PRO React components
import VuiTagInput from "components/VuiTagInput";
html
css
js
Props Information
Name | Type | Default | Description |
---|---|---|---|
size | 'medium''large' | medium | Change the VuiTagInput size. |
error | bool | false | Change the VuiTagInput border color to red, its useful when displaying the error messages. |
success | bool | false | Change the VuiTagInput border color to green, its useful when displaying the success messages. |
React Tag Input | You can pass all of the react-tag-input props for the VuiTagInput as well. |
Functionality
The below code contains a full exmaple of the VuiTagInput
, you can check the functionality as well that how you can add or remove tags.