调整属性顺序

This commit is contained in:
2021-05-23 23:35:58 +08:00
parent ae94104f47
commit 96cf231cbd
5 changed files with 37 additions and 37 deletions

View File

@@ -120,6 +120,11 @@ export default {
components: {
Icon
},
beforeRouteEnter(to, from, next) {
next(vm => {
vm.utils.changeTitle();
});
},
data() {
return {
config: this.$root.config.storage,
@@ -165,11 +170,6 @@ export default {
}
}
},
beforeRouteEnter(to, from, next) {
next(vm => {
vm.utils.changeTitle();
});
},
methods: {
/**