mirror of
https://gitee.com/orangeform/orange-admin.git
synced 2026-01-18 02:56:30 +08:00
20 lines
351 B
Vue
20 lines
351 B
Vue
<template>
|
|
<div>
|
|
<router-view></router-view>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
watch: {
|
|
$route: {
|
|
handler (newValue) {
|
|
document.title = 'UAA应用管理项目';
|
|
if (newValue.meta && newValue.meta.title) document.title += ' - ' + newValue.meta.title;
|
|
},
|
|
immediate: true
|
|
}
|
|
}
|
|
}
|
|
</script>
|