fix up some things

This commit is contained in:
2024-07-14 23:45:26 +02:00
parent 0649004e51
commit 0ef5d72275
6 changed files with 22 additions and 14 deletions
+7 -1
View File
@@ -42,6 +42,11 @@ export default defineComponent(
this.displayNodes = this.nodes;
}
},
displayNodes: {
handler() {
this.sortListByTime();
}
},
eorzeaTime: {
immediate: true,
handler(newValue, oldValue) {
@@ -64,8 +69,9 @@ export default defineComponent(
});
},
},
mounted() {
async mounted() {
this.displayNodes = this.nodes;
this.sortListByTime();
},
}
);