中航光电热表web
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.

38 lines
570 B

8 months ago
<template>
<div style="width: 100%;height: 100%;">
<work-base></work-base>
8 months ago
</div>
</template>
<script>
import workBase from './components/workbase.vue';
8 months ago
import { mapGetters } from 'vuex';
export default {
name: 'wel',
components:{
workBase
},
8 months ago
data() {
return {
activeNames: ['1', '2', '3', '5'],
logActiveNames: ['42'],
};
},
computed: {
...mapGetters(['userInfo']),
},
methods: {
handleChange(val) {
window.console.log(val);
},
},
};
</script>
<style>
.el-font-size {
font-size: 14px;
}
</style>