WIP Progress on skeleton of the Vue app.

This commit is contained in:
2019-03-04 18:46:54 -06:00
parent bcde5fbfc0
commit 1b94245078
37 changed files with 536 additions and 256 deletions

1
web/src/types/index.d.ts vendored Normal file
View File

@ -0,0 +1 @@
export * from './nav-next';

4
web/src/types/nav-next.d.ts vendored Normal file
View File

@ -0,0 +1,4 @@
import { Vue } from 'vue-property-decorator';
import { RawLocation } from 'vue-router';
export type NavNext = (to?: RawLocation | false | ((vm: Vue) => any) | void) => void;