forked fromalexusmai/vue-laravel-file-manager
- Notifications
You must be signed in to change notification settings - Fork0
tranlongpc/vue-laravel-file-manager
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
File manager for Laravel - Frontend - Vue.js
Backend - Laravel 5 package -alexusmai/laravel-file-manager
$ npm install laravel-file-manager --save
IF your App using Vuex store
import FileManager from 'laravel-file-manager'import store from './path-to-your-store/store' // your Vuex storeVue.use(FileManager, {store})
ELSE you need create new vuex instance
import Vue from 'vue';import Vuex from 'vuex';import FileManager from 'laravel-file-manager'Vue.use(Vuex);// create Vuex store, if you don't have itconst store = new Vuex.Store();Vue.use(FileManager, {store});
The application store module will be registered under the name 'fm'
Now vue component is registered and you can use it in your app
<file-manager></file-manager>
Don't forget add a csrf token to head block in your Laravel view and add bootstrap 4 and fontawesome 5 styles
<!-- CSRF Token --><meta name="csrf-token" content="{{ csrf_token() }}"><!-- Example --><link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.10/css/all.css"><link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
Warning! Package use axios (Promise) - use babel-polyfill for ie11
About
No description, website, or topics provided.
Resources
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
No releases published
Packages0
No packages published
Languages
- JavaScript52.3%
- Vue47.2%
- HTML0.5%