这是我的代码
tagifyInput = document.querySelector('input[name=tags]'),
tagify = new Tagify(tagifyInput, {
enforceWhitelist: true,
whitelist: selected,
template:{
tag: function (v) {
return `<tag title='${v}' contenteditable='false' spellcheck="false">
<x title='remove tag' class='tagify__tag__removeBtn'></x>
<div>
<span class='tagify__tag-text'>${v}</span>
</div>
</tag>`;
}
}
});
我也在此提供此模板以进行标记,但它不起作用可能是什么问题?