mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-28 11:00:39 +00:00
Initial commit
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
<template>
|
||||
<div id="app">
|
||||
<VueFileManager :config="config" style="height: 100%; width: 100%"/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import VueFileManager from './components/VueFileManager.vue'
|
||||
|
||||
export default {
|
||||
name: 'app',
|
||||
components: {
|
||||
VueFileManager
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
config: {
|
||||
//api: 'https://vuefilemanager.hi5ve.digital/api'
|
||||
api: 'http://localhost:8000/api'
|
||||
//api: 'http://172.20.10.5:8000/api'
|
||||
//api: 'http://192.168.1.131:8000/api'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
@import "@assets/app.scss";
|
||||
|
||||
#app {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user