mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
26 lines
426 B
Vue
26 lines
426 B
Vue
<template>
|
|
<div id="app">
|
|
<VueFileManager style="height: 100%; width: 100%"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import VueFileManager from './components/VueFileManager.vue'
|
|
|
|
export default {
|
|
name: 'app',
|
|
components: {
|
|
VueFileManager
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
|
|
#app {
|
|
height: 100%;
|
|
width: 100%;
|
|
position: absolute;
|
|
}
|
|
</style>
|