Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
NotificationsYou must be signed in to change notification settings

tranlongpc/vue-laravel-file-manager

 
 

Repository files navigation

File manager for Laravel - Frontend - Vue.js

Backend - Laravel 5 package -alexusmai/laravel-file-manager

Laravel File Manager

Installation

NPM

$ npm install laravel-file-manager --save

Usage

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

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript52.3%
  • Vue47.2%
  • HTML0.5%

[8]ページ先頭

©2009-2025 Movatter.jp