mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-20 22:38:58 +00:00
This PR includes Vue examples, in particular: - Vue Spa - Vue Spa + Router - Vue using Sever Side Rendering with Express.js. Also updated the general Readme.
12 lines
182 B
TypeScript
12 lines
182 B
TypeScript
import './assets/main.css'
|
|
|
|
import { createApp } from 'vue'
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
|
|
const app = createApp(App)
|
|
|
|
app.use(router)
|
|
|
|
app.mount('#app')
|