initial vue template

This commit is contained in:
Niels Kooiman
2019-08-14 08:51:48 +02:00
parent 77ce456e11
commit 145f191fa5
36 changed files with 11654 additions and 1 deletions

13
src/shims-tsx.d.ts vendored Normal file
View File

@@ -0,0 +1,13 @@
import Vue, { VNode } from 'vue';
declare global {
namespace JSX {
// tslint:disable no-empty-interface
interface Element extends VNode {}
// tslint:disable no-empty-interface
interface ElementClass extends Vue {}
interface IntrinsicElements {
[elem: string]: any;
}
}
}