我从CMS系统(WordPress)检索内容。在“ page.content”变量中,链接输出如下:<a href="#">
。如何用以下内容替换此内容:客户端<nuxt-link to="#">
?
之前已经问过这个问题,但是没有真正的答案:https://github.com/nuxt/nuxt.js/issues/2912-尽管这必须是一个非常常规的用例。
简单的字符串替换就足够了。
const string = 'links are outputted like so: <a href="#">. How can I replace this content with: <nuxt-link to="#">'
const converted = string.replace(/<a/g, '<nuxt-link').replace(/href=/g, 'to=');
console.log(converted)