diff --git a/YTManager/frontend/index.html b/YTManager/frontend/index.html index 50647a4..222a565 100644 --- a/YTManager/frontend/index.html +++ b/YTManager/frontend/index.html @@ -6,7 +6,6 @@ - -
diff --git a/YTManager/frontend/src/components/Hello.vue b/YTManager/frontend/src/components/Hello.vue deleted file mode 100644 index 299ceef..0000000 --- a/YTManager/frontend/src/components/Hello.vue +++ /dev/null @@ -1,45 +0,0 @@ - - - - - \ No newline at end of file diff --git a/YTManager/frontend/src/components/Video_Grid.vue b/YTManager/frontend/src/components/Video_Grid.vue new file mode 100644 index 0000000..034dff7 --- /dev/null +++ b/YTManager/frontend/src/components/Video_Grid.vue @@ -0,0 +1,77 @@ + + + diff --git a/YTManager/frontend/src/index.ts b/YTManager/frontend/src/index.ts index 1071f4a..a69b04c 100644 --- a/YTManager/frontend/src/index.ts +++ b/YTManager/frontend/src/index.ts @@ -1,17 +1,16 @@ import Vue from "vue"; -import HelloComponent from "./components/Hello.vue"; +import VGC from "./components/Video_Grid.vue"; import './index.css'; let v = new Vue({ el: "#app", template: `
- Name: - +
`, data: { name: "something" }, components: { - HelloComponent + VGC } }); diff --git a/YTManager/frontend/tsconfig.json b/YTManager/frontend/tsconfig.json index b8f6335..a3ad19b 100644 --- a/YTManager/frontend/tsconfig.json +++ b/YTManager/frontend/tsconfig.json @@ -4,9 +4,10 @@ "sourceMap": true, "strict": true, "noImplicitReturns": true, - "module": "es2015", + "module": "commonjs", "moduleResolution": "node", - "target": "es5" + "target": "es6", + "noImplicitAny": true }, "include": [ "./src/**/*"