You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
366 B
22 lines
366 B
4 years ago
|
<template>
|
||
|
<div id='app'>
|
||
|
<router-view class="router_view"/>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'App',
|
||
|
components: {},
|
||
|
created() {
|
||
|
//TODO 每次刷新页面会加载这个方法?是否能在这里判断 必须要缓存的Token ,用户信息等
|
||
|
},
|
||
|
}
|
||
|
</script>
|
||
|
<style lang="scss" scoped>
|
||
|
#app {
|
||
|
.router_view {
|
||
|
}
|
||
|
}
|
||
|
</style>
|