Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

64 lines
1.7 KiB
JavaScript
Raw Permalink Normal View History

2018-05-09 08:05:17 -05:00
/**
* 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.
*/
2018-05-09 08:05:17 -05:00
require('./bootstrap');
2021-01-07 03:18:43 +01:00
window.Vue = require('vue').default;
import { i18n } from "./plugins/i18n.js"; // translation
2018-05-09 08:05:17 -05:00
/**
* The following block of code may be used to automatically register your
* Vue components. It will recursively scan this directory for the Vue
* components and automatically register them with their "basename".
*
* Eg. ./components/ExampleComponent.vue -> <example-component></example-component>
*/
const files = require.context('./', true, /\.vue$/i);
files.keys().map(key => Vue.component(key.split('/').pop().split('.')[0], files(key).default));
import ToggleButton from 'vue-js-toggle-button'
Vue.use(ToggleButton);
import VTooltip from 'v-tooltip'
Vue.use(VTooltip);
import vSelect from 'vue-select'
Vue.component('v-select', vSelect);
2020-06-08 08:27:03 -05:00
import Multiselect from 'vue-multiselect'
Vue.component('multiselect', Multiselect)
import VueTabs from 'vue-nav-tabs'
Vue.use(VueTabs)
2021-05-11 08:08:59 -05:00
import VModal from 'vue-js-modal'
Vue.use(VModal)
2020-06-08 08:27:03 -05:00
// Vue.mixin({
// methods: {
// route: route
// }
// });
Vue.filter('ucfirst', function (value) {
if (!value) return '';
value = value.toString();
return value.charAt(0).toUpperCase() + value.slice(1)
});
2018-05-09 08:05:17 -05:00
/**
* Next, we will create a fresh Vue application instance and attach it to
* the page. Then, you may begin adding components to this application
* or customize the JavaScript scaffolding to fit your unique needs.
*/
const app = new Vue({
el: '#app',
i18n,
2018-05-09 08:05:17 -05:00
});