mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-27 17:58:57 +00:00
feat: added vue examples
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.
This commit is contained in:
8
vue/spa/src/main.ts
Normal file
8
vue/spa/src/main.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
import './assets/main.css'
|
||||
|
||||
import { createApp } from 'vue'
|
||||
import App from './App.vue'
|
||||
|
||||
const app = createApp(App)
|
||||
|
||||
app.mount('#app')
|
||||
Reference in New Issue
Block a user