前后端分目录

This commit is contained in:
andywang
2022-07-14 12:55:31 +08:00
parent cd72c43d62
commit bb8cf90f53
1155 changed files with 47237 additions and 14446 deletions

View File

@@ -0,0 +1,20 @@
import bus from '@/components/common/bus.js';
export default {
created(){
bus.$emit('collapseHeader',true)
},
data(){
return {
smallHeader:false
}
},
methods:{
openHeader(){
this.smallHeader = !this.smallHeader
},
mixinClose(){
this.$emit('close')
bus.$emit('collapseHeader',false)
}
}
}