Last active
November 6, 2022 09:40
-
-
Save Maxim-Kolmogorov/5e1ac5cf9351103c26d83449f63f58df to your computer and use it in GitHub Desktop.
Laravel 9 + Vite + Vue.js + SSR = example, part 6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import './bootstrap'; | |
import { createApp } from 'vue'; | |
import router from './router.js'; | |
import App from './App.vue'; | |
const app = createApp(App); | |
app.use(router); | |
app.mount('#app'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment