Convert frontend to Vue #3

Merged
jacob1123 merged 158 commits from vue into master 2022-02-08 22:20:11 +01:00
2 changed files with 6 additions and 1 deletions
Showing only changes of commit a7890bce16 - Show all commits

5
web/src/@types/shims-vue.d.ts vendored Normal file
View File

@ -0,0 +1,5 @@
declare module "*.vue" {
import { defineComponent } from "vue";
const component: ReturnType<typeof defineComponent>;
export default component;
}

View File

@ -1,5 +1,5 @@
import { ComponentCustomProperties } from 'vue'
import { State } from './store'
import { State } from '../store'
import { Store } from 'vuex'
declare module '@vue/runtime-core' {