mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-21 08:52:21 +00:00
21 lines
480 B
JavaScript
21 lines
480 B
JavaScript
import AbstractWidget from './Abstract.js';
|
|
import StudiengangInformation from '../Cis/Cms/StudiengangInformation/StudiengangInformation.js';
|
|
|
|
export default {
|
|
name: "WidgetsStudiengang",
|
|
data(){
|
|
return {};
|
|
},
|
|
components:{
|
|
StudiengangInformation,
|
|
},
|
|
mixins:[AbstractWidget],
|
|
mounted(){
|
|
this.$emit('setConfig', false);
|
|
},
|
|
template:/*html*/`
|
|
<div class="p-3 h-100 overflow-auto">
|
|
<studiengang-information displayWidget ></studiengang-information>
|
|
</div>
|
|
`
|
|
}; |