mirror of
https://github.com/tiny-craft/tiny-rdm.git
synced 2025-04-22 13:28:05 +08:00
fix code styles
This commit is contained in:
parent
62c0079a8d
commit
b44d3ea571
@ -24,7 +24,7 @@ const props = defineProps({
|
||||
},
|
||||
})
|
||||
|
||||
const emit = defineEmits(['reset', 'input', 'save', 'scroll'])
|
||||
const emit = defineEmits(['reset', 'input', 'save'])
|
||||
|
||||
const scrollTop = ref(0)
|
||||
|
||||
@ -116,9 +116,8 @@ watch(
|
||||
if (editorNode != null) {
|
||||
editorNode.setValue(content)
|
||||
editorNode.onDidLayoutChange(() => {
|
||||
if (scrollTop.value > 0) {
|
||||
console.log(scrollTop.value);
|
||||
editorNode.setScrollTop(scrollTop.value);
|
||||
if (scrollTop.value > 0) {
|
||||
editorNode.setScrollTop(scrollTop.value)
|
||||
}
|
||||
})
|
||||
await nextTick(() => emit('reset', content))
|
||||
|
Loading…
x
Reference in New Issue
Block a user