Files
learning-system-portal/src/App.vue
2024-04-10 15:44:43 +08:00

43 lines
947 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">
<keep-alive :include="['case']">
<router-view />
</keep-alive>
</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>