Skip to content

Commit

Permalink
Fix missing Vue import
Browse files Browse the repository at this point in the history
  • Loading branch information
itamargiv committed Nov 3, 2023
1 parent f263227 commit d6b7d37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import './bootstrap';
import i18n from 'vue-banana-i18n';
import { createStore } from './store';
import i18nMessages from './lib/i18n';
import {createApp, h} from 'vue';
import Vue, {createApp, h} from 'vue';
import {createInertiaApp} from '@inertiajs/inertia-vue3';
import bubble from './lib/bubble';
import Error from './Pages/Error.vue';
Expand Down

0 comments on commit d6b7d37

Please sign in to comment.