加入小工具页面(空白)、设置页面

This commit is contained in:
2021-02-10 01:31:50 +08:00
parent ce91d2ce57
commit 8ce492cee8
3 changed files with 100 additions and 5 deletions

25
src/views/Tools.vue Normal file
View File

@@ -0,0 +1,25 @@
<template>
<el-container class="tools">
</el-container>
</template>
<script>
export default {
name: 'Tools',
data() {
return {
utils: this.$root.utils
};
},
beforeRouteEnter(to, from, next) {
next(vm => {
vm.utils.changeTitle('小工具');
});
}
}
</script>
<style lang="less" scoped>
</style>