调整属性顺序

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

@@ -35,17 +35,17 @@
<script>
export default {
name: 'Settings',
beforeRouteEnter(to, from, next) {
next(vm => {
vm.utils.changeTitle('设置');
});
},
data() {
return {
config: this.$root.config.storage,
utils: this.$root.utils
}
},
beforeRouteEnter(to, from, next) {
next(vm => {
vm.utils.changeTitle('设置');
});
},
methods: {
/**