簡単にタグフォームを設置できる「Voerro Vue Tags Input v2」、
ボタンをクリックでもタグの追加 が出来るようにしました。
前提:用意されたタグ追加タイミングはキー入力のみ
「Voerro Vue Tags Input v2」で用意されているタグの追加タイミングは以下
- Enterキー押下
- カンマ(,)入力
https://github.com/voerro/vue-tagsinput/blob/master/dist/voerro-vue-tagsinput.js
https://github.com/voerro/vue-tagsinput/blob/master/src/VoerroTagsInput.vue
方法:タグ追加時に実行される関数を使用
タグ追加時に実行される関数
tagFromInput();
を使用します。
<input type="button" name="" value="追加" @click="addTag"></button>
addTag: function() {
// voerro-vue-tagsinput.jsでタグ追加時に実行される関数
this.$refs.tagsInput.tagFromInput();
},
その他「Voerro Vue Tags Input v2」組み込みに参考にしたリンク
組み込み方
https://www.kabanoki.net/5059/
機能カスタマイズ
https://voerro.github.io/vue-tagsinput/
リポジトリ
https://github.com/voerro/vue-tagsinput?ref=kabanoki.net