食品行业工业互联网标识服务平台-管理系统
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.
 
 
 

21 lines
366 B

<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>