From bcbae5539eb7013a2e81cc69365b79672cd4f031 Mon Sep 17 00:00:00 2001 From: Tyrel Souza Date: Fri, 13 Apr 2018 10:54:53 -0400 Subject: [PATCH] first commit --- app.js | 6 ++++++ index.html | 17 +++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 app.js create mode 100644 index.html diff --git a/app.js b/app.js new file mode 100644 index 0000000..2269ddb --- /dev/null +++ b/app.js @@ -0,0 +1,6 @@ +var app = new Vue({ + el: '#app', + data: { + title: "Hello world." + } +}) diff --git a/index.html b/index.html new file mode 100644 index 0000000..103c177 --- /dev/null +++ b/index.html @@ -0,0 +1,17 @@ + + + + + + + + +
+

{{ title }}

+
+ + + + + +