Files
learning-system-portal/src/App.vue
zhaofang 0936096121 提交
2022-06-14 18:46:47 +08:00

41 lines
891 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<div id="app">
<router-view />
</div>
</template>
<script>
import { mapGetters } from 'vuex';
export default{
name: 'App',
computed: {
...mapGetters(['userInfo'])
},
mounted(){
//从状态值中取,因为登录处理所以移动watch中
// console.log(this.userInfo);
// if(this.userInfo && this.userInfo.name!=''){
// this.$watermark.set(this.userInfo.name+this.userInfo.loginName);
// }
},
// watch:{
// userInfo(newVal,oldVal){
// if(newVal && newVal.name!=''){
// this.$watermark.set(newVal.name+newVal.loginName);
// }
// }
// }
}
</script>
<style lang="scss">
.u-page{
padding: 10px;
}
.text-tooltip{
background: #efeff1 !important;
border: 1px solid #e7e7e7 !important;
box-shadow: 0px 1px 5px 1px rgba(92,98,111,.3);
}
</style>