<view v-html="123"></view>
- 发布:2022-02-25 22:27
- 更新:2022-03-09 15:11
- 阅读:1424
产品分类: uniapp/小程序/微信
PC开发环境操作系统: Mac
PC开发环境操作系统版本号: 12.0.1
HBuilderX类型: Alpha
HBuilderX版本号: 3.3.12
第三方开发者工具版本号: 1.05.211300
基础库版本号: 2.22.0
项目创建方式: HBuilderX
示例代码:
操作步骤:
<view v-html="123"></view>
<view v-html="123"></view>
预期结果:
正常渲染123这个文本
正常渲染123这个文本
实际结果:
[plugin:vite:vue] unknown directive{"type":7,"name":"html","exp":{"type":4,"content":"123","isStatic":false,"constType":3,"loc":{"start":{"column":17,"line":32,"offset":976},"end":{"column":20,"line":32,"offset":979},"source":"123"},"identifiers":[]},"modifiers":[],"loc":{"start":{"column":9,"line":32,"offset":968},"end":{"column":21,"line":32,"offset":980},"source":"v-html=\"123\""}}
[plugin:vite:vue] unknown directive{"type":7,"name":"html","exp":{"type":4,"content":"123","isStatic":false,"constType":3,"loc":{"start":{"column":17,"line":32,"offset":976},"end":{"column":20,"line":32,"offset":979},"source":"123"},"identifiers":[]},"modifiers":[],"loc":{"start":{"column":9,"line":32,"offset":968},"end":{"column":21,"line":32,"offset":980},"source":"v-html=\"123\""}}
bug描述:
vue3在小程序中无法使用v-html
FullStack - 【插件开发】【专治疑难杂症】【ios上架、马甲包、白包、过审、已成功上架过几百个】【多款插件已上架:https://ext.dcloud.net.cn/publisher?id=22130】【非诚勿扰】QQ:543610866
v-html,可以在H5端和App端(需v3编译器)使用,不能在小程序中使用。如需要在小程序使用,请使用rich-text组件或uparse扩展插件
云逻星空 (作者)
然而vue2版本的可以
2022-02-26 12:07