Vuetify File Browser
Open source file manager component for Vue.js. Requires Vuetify v2.0 or higher.
💣 Demo
🚀 Backend

Features
Storages:
Functions:
Usage
npm i vuetify-file-browser
<template>
<file-browser :axiosConfig="{baseURL: 'http://localhost:8081'}" />
</template>
<script>
import FileBrowser from "vuetify-file-browser";
export default {
components: {
FileBrowser
}
};
</script>
Props
storages: {
type: String,
default: () => availableStorages.map(item => item.code).join(",")
},
storage: { type: String, default: "local" },
tree: { type: Boolean, default: true },
icons: { type: Object, default: () => fileIcons },
endpoints: { type: Object, default: () => endpoints },
axios: { type: Function },
axiosConfig: { type: Object, default: () => {} }