Files
cloudron-box/dashboard/src/components/FileManager.vue

23 lines
333 B
Vue
Raw Normal View History

<template>
<!-- router-view needs some fake node first for some unknown reason -->
<span></span>
<router-view></router-view>
</template>
2023-02-19 17:13:33 +01:00
<script>
2023-02-19 17:13:33 +01:00
export default {
data() {
return {
};
},
mounted() {
if (!localStorage.token) console.error('Set localStorage.token')
}
};
2023-02-19 17:13:33 +01:00
</script>
<style scoped>
</style>