【已解决】koca vue3中使用v-html写法生产上页面消失

KOCA版本 :4.2
KOCA模块 :vite配置index文件
模块版本 :4.2
问题 :在页面中使用v-html写法
报错细节 :生产上页面消失



在${workholder}/vite/plugins/index.ts中修改如下的代码

old:

createSimpleExpression(`this.xss(${content})`, false)

new:

createSimpleExpression(`getCurrentInstance().proxy.xss(${content})`, false)

在${workholder}/vite/plugins/index.ts中修改如下的代码

old:

createSimpleExpression(`this.xss(${content})`, false)

new:

createSimpleExpression(`getCurrentInstance().proxy.xss(${content})`, false)