diff options
author | HampusM <hampus@hampusmat.com> | 2022-05-23 15:30:53 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-05-23 15:30:53 +0200 |
commit | 804f13402078a025924f5a42c479dd418f985112 (patch) | |
tree | 537975a99a83aa97abf34fc11ed27b269750febb /master/src/main.ts | |
parent | 71a02201164597481b926a26ab1eaa1ee112f4ec (diff) |
feat(master): add display single minion temperature reading
Diffstat (limited to 'master/src/main.ts')
-rw-r--r-- | master/src/main.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/master/src/main.ts b/master/src/main.ts index 3e79677..10ea69d 100644 --- a/master/src/main.ts +++ b/master/src/main.ts @@ -1,5 +1,5 @@ -import { createApp } from 'vue' -import App from './App.vue' -import router from './router' +import { createApp } from "vue"; +import App from "./App.vue"; +import router from "./router"; -createApp(App).use(router).mount('#app') +createApp(App).use(router).mount("#app"); |