commit:添加单体工程开源版本

This commit is contained in:
Jerry
2020-09-25 10:45:02 +08:00
parent 28ea2247f6
commit 53270e70f8
354 changed files with 40271 additions and 9 deletions

View File

@@ -0,0 +1,19 @@
<template>
<div>
<router-view></router-view>
</div>
</template>
<script>
export default {
watch: {
$route: {
handler (newValue) {
document.title = '橙单工程';
if (newValue.meta && newValue.meta.title) document.title += ' - ' + newValue.meta.title;
},
immediate: true
}
}
}
</script>