Skip to content

Instantly share code, notes, and snippets.

@Maxim-Kolmogorov
Last active November 6, 2022 09:40
Show Gist options
  • Save Maxim-Kolmogorov/5e1ac5cf9351103c26d83449f63f58df to your computer and use it in GitHub Desktop.
Save Maxim-Kolmogorov/5e1ac5cf9351103c26d83449f63f58df to your computer and use it in GitHub Desktop.
Laravel 9 + Vite + Vue.js + SSR = example, part 6
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