mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 12:19:28 +00:00
17 lines
345 B
JavaScript
17 lines
345 B
JavaScript
import LvZuweisung from '../../../components/Studierendenantrag/Lvzuweisung.js';
|
|
import FhcBase from "../../../plugins/FhcBase/FhcBase.js";
|
|
|
|
const app = Vue.createApp({
|
|
name: 'LvzuweisungApp',
|
|
components: {
|
|
LvZuweisung
|
|
},
|
|
computed: {
|
|
notinframe() {
|
|
return window.self === window.top;
|
|
}
|
|
}
|
|
});
|
|
app
|
|
.use(FhcBase)
|
|
.mount('#wrapper'); |