Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
ishanvyas22 committed Aug 30, 2020
1 parent 8165af9 commit 6e3a7c0
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions stubs/inertia-vue/assets/js/app.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import Vue from 'vue'
import VueMeta from 'vue-meta'
import PortalVue from 'portal-vue'
import { InertiaApp } from '@inertiajs/inertia-vue'
import Vue from 'vue';
import VueMeta from 'vue-meta';
import PortalVue from 'portal-vue';
import { InertiaApp } from '@inertiajs/inertia-vue';

Vue.config.productionTip = false
Vue.config.productionTip = false;

Vue.use(InertiaApp)
Vue.use(PortalVue)
Vue.use(VueMeta)
Vue.use(InertiaApp);
Vue.use(PortalVue);
Vue.use(VueMeta);

let app = document.getElementById('app')
let app = document.getElementById('app');

new Vue({
metaInfo: {
Expand All @@ -21,4 +21,4 @@ new Vue({
resolveComponent: name => import(`@/Pages/${name}`).then(module => module.default),
},
}),
}).$mount(app)
}).$mount(app);

0 comments on commit 6e3a7c0

Please sign in to comment.