From e298a263223d9b08f9d566c2038b0689506e967d Mon Sep 17 00:00:00 2001 From: Paul Oliver Date: Thu, 29 Feb 2024 03:01:41 +0100 Subject: Vue basic setup and timezone picker component --- client/src/main.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 client/src/main.js (limited to 'client/src/main.js') diff --git a/client/src/main.js b/client/src/main.js new file mode 100644 index 0000000..63eb05f --- /dev/null +++ b/client/src/main.js @@ -0,0 +1,8 @@ +import Vue from 'vue' +import App from './App.vue' + +Vue.config.productionTip = false + +new Vue({ + render: h => h(App), +}).$mount('#app') -- cgit v1.2.1