fix(测试跟踪): 富文本框英文引号预览时变成中文引号
--bug=1028489 --user=陈建星 【测试跟踪】github#26054,功能用例-创建用例,添加前置条件时,英文的引号,保存后,自动变成了中文引号 https://www.tapd.cn/55049933/s/1403814
This commit is contained in:
parent
a6d3f9e16b
commit
f71dcd84fb
|
@ -164,6 +164,11 @@ export default {
|
|||
}
|
||||
},
|
||||
mounted() {
|
||||
let markdownIt = this.$refs.md.markdownIt;
|
||||
if (markdownIt) {
|
||||
// 解决英文引号变成中文引号的问题
|
||||
markdownIt.options.typographer = false;
|
||||
}
|
||||
if (!this.disabled) {
|
||||
// 点击编辑,失去焦点展示
|
||||
let el = document.getElementById(this.id);
|
||||
|
|
|
@ -153,6 +153,11 @@
|
|||
}
|
||||
},
|
||||
mounted() {
|
||||
let markdownIt = this.$refs.md.markdownIt;
|
||||
if (markdownIt) {
|
||||
// 解决英文引号变成中文引号的问题
|
||||
markdownIt.options.typographer = false;
|
||||
}
|
||||
if (!this.disabled) {
|
||||
// 点击编辑,失去焦点展示
|
||||
let el = document.getElementById(this.id);
|
||||
|
|
Loading…
Reference in New Issue