vue输入标签 vue-tags-input
时间:2020-08-22 18:16:16
收藏:0
阅读:374
vue TagsInput
-
输入标签

-
安装
npm install @johmun/vue-tags-input -
用法
<template> <div> <vue-tags-input v-model="tags" :tags="tags" @tags-changed="newTags => tag = newTags" /> </div> </template> <script> import VueTagsInput from ‘@johmun/vue-tags-input‘; export default { components: { VueTagsInput, }, data() { return { tags: [], }; }, }; </script>
原文:https://www.cnblogs.com/wuxiaoshi/p/13545399.html
评论(0)