27 lines
365 B
Vue
27 lines
365 B
Vue
<template>
|
|
<eventEditor></eventEditor>
|
|
<linkEditor></linkEditor>
|
|
<playlistEditor></playlistEditor>
|
|
</template>
|
|
|
|
<style scoped>
|
|
</style>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
name : 'Admin',
|
|
data() {
|
|
return {
|
|
}
|
|
},
|
|
computed: {
|
|
},
|
|
methods: {
|
|
},
|
|
mounted(){
|
|
console.log("Admin app is fully loaded!");
|
|
}
|
|
};
|
|
</script>
|