2020-01-02 13:08:50 +03:00

34 lines
576 B
JavaScript
Vendored

/**
* 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 Global from './../../mixins/global';
import {Tooltip} from 'element-ui';
Vue.use(Tooltip);
const app = new Vue({
el: '#app',
components: {
[Tooltip.name]: Tooltip,
},
mixins: [
Global
],
data: function () {
return {
}
}
});