running-tools

A collection of tools for runners and their coaches
git clone https://git.ashermorgan.net/running-tools/
Log | Files | Refs | README

main.ts (271B)


      1 import { createApp } from 'vue';
      2 
      3 import App from '@/App.vue';
      4 import router from '@/router';
      5 import { migrateLocalStorage } from '@/core/migrations';
      6 
      7 import '@/assets/global.css';
      8 
      9 migrateLocalStorage();
     10 
     11 const app = createApp(App);
     12 app.use(router);
     13 app.mount('#app');