Merge pull request #1850 from cuneytsenturk/master

Improved import upload page..
This commit is contained in:
Cüneyt Şentürk
2021-02-11 18:09:39 +03:00
committed by GitHub
13 changed files with 198 additions and 85 deletions

View File

@ -0,0 +1,31 @@
/**
* First we will load all of this project's JavaScript dependencies which
* includes Vue and other libraries. It is a great starting point when
* building robust, powerful web applications using Vue and Laravel.
*/
require('../../bootstrap');
import Vue from 'vue';
import DashboardPlugin from '../../plugins/dashboard-plugin';
import Global from '../../mixins/global';
import Form from './../../plugins/form';
// plugin setup
Vue.use(DashboardPlugin);
const app = new Vue({
el: '#app',
mixins: [
Global
],
data: function () {
return {
form: new Form('import'),
}
}
});