fix: update copy method

This commit is contained in:
yanglbme 2020-07-04 17:54:48 +08:00
parent 1541766a07
commit 34c4b936a5
2 changed files with 2 additions and 6 deletions

View File

@ -177,8 +177,7 @@ export default {
let clipboardDiv = document.getElementById('output');
solveWeChatImage();
fixCodeWhiteSpace();
this.setHtml(solveHtml());
solveHtml();
clipboardDiv.focus();
window.getSelection().removeAllRanges();
let range = document.createRange();
@ -253,7 +252,7 @@ export default {
document.body.removeChild(downLink)
},
...mapMutations(['clearEditorToDefault','setCurrentColor', 'setCiteStatus', 'themeChanged',
'setHtml', 'setCurrentFont', 'setCurrentSize', 'setCssEditorValue', 'setWxRendererOptions'])
'setCurrentFont', 'setCurrentSize', 'setCssEditorValue', 'setWxRendererOptions'])
},
mounted() {
this.selectFont = this.currentFont;

View File

@ -26,9 +26,6 @@ const state = {
nightMode: false
};
const mutations = {
setHtmL(state, data) {
state.html = data;
},
setEditorValue(state, data) {
state.editor.setValue(data)
},