26 lines
382 B
Vue
26 lines
382 B
Vue
<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>
|