aboutsummaryrefslogtreecommitdiff
path: root/src/main.js
diff options
context:
space:
mode:
authorJoop Kiefte <ikojba@gmail.com>2023-10-05 22:59:11 +0100
committerJoop Kiefte <ikojba@gmail.com>2023-10-05 22:59:11 +0100
commit6f0a2d521ea68c468fff304b93e6ee7b0613b366 (patch)
tree8d2225672ac35160c964a48cd5f261c0eac25c2f /src/main.js
Initialize web application via create-cloudflare CLI
Details: C3 = create-cloudflare@2.4.0 project name = bahaiprayers-json framework = vue framework cli = create-vue@3.7.5 package manager = bun@1.0.4 wrangler = wrangler@3.11.0 git = 2.42.0
Diffstat (limited to 'src/main.js')
-rw-r--r--src/main.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/main.js b/src/main.js
new file mode 100644
index 0000000..5a5dbdb
--- /dev/null
+++ b/src/main.js
@@ -0,0 +1,11 @@
+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')