1.0.1 • Published 6 months ago

@jysperu/vuejs-tagify v1.0.1

Weekly downloads
-
License
-
Repository
gitlab
Last release
6 months ago

Componente Tagify para VueJS

Instalación

CDN

<script src="https://unpkg.com/@jysperu/vuejs-tagify@latest/dist/tagify.umd.js"></script>
<link href="https://unpkg.com/@jysperu/vuejs-tagify@latest/dist/tagify.css" rel="stylesheet"/>

NPM

npm i @jysperu/vuejs-tagify

Uso

Import

import tagify from "@jysperu/vuejs-tagify";

Require

const tagify = require("@jysperu/vuejs-tagify");

Browser

const { tagify } = JCore.VueJS;

Ejemplo

<template>
  <tagify v-model="valor" />
</template>

<script setup>
// Obtener el componente
import tagify from "@jysperu/vuejs-tagify";

// Variable que aloja la imágen
import { ref } from "vue";
const valor = ref(null);
</script>
1.0.1

6 months ago

1.0.0

6 months ago