效果图
主要代码:js
this.$nextTick(() => {// 给循环出来的div标签加个id为let container = document.getElementById("linkTo");container.innerHTML = container.textContent.replace(/(https?:\/\/[^\s]+)/g, function (match) {var link = document.createElement("a");link.href = match;link.style.color = "blue"; // 设置链接颜色为蓝色link.target = "_blank"; // 在新窗口打开链接link.style.textDecoration = "underline"; // 下划线link.textContent = match;link.onclick = function () {return false; // 阻止链接默认行为};return link.outerHTML;});
});