mirror of https://github.com/halo-dev/halo
pref: real time logs automatically scroll to the bottom.
实时日志 功能优化, 自动滚动到底部.pull/3445/head
parent
3556361273
commit
eaa2463e82
|
@ -61,6 +61,10 @@ export default {
|
||||||
created() {
|
created() {
|
||||||
this.loadLogs()
|
this.loadLogs()
|
||||||
},
|
},
|
||||||
|
updated() {
|
||||||
|
// 滚动条定位到底部
|
||||||
|
this.$el.querySelector('.CodeMirror-scroll').scrollTop = this.$el.querySelector('.CodeMirror-scroll').scrollHeight
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
loadLogs() {
|
loadLogs() {
|
||||||
this.loading = true
|
this.loading = true
|
||||||
|
|
Loading…
Reference in New Issue