From b84d49038da4fdcc99c72738ac52f29f72252a14 Mon Sep 17 00:00:00 2001 From: androiddrew Date: Wed, 20 Sep 2017 11:51:47 -0400 Subject: [PATCH] Adding index and app --- index.html | 16 ++++++++++++++++ js/app.js | 6 ++++++ 2 files changed, 22 insertions(+) create mode 100644 index.html create mode 100644 js/app.js diff --git a/index.html b/index.html new file mode 100644 index 0000000..b22997f --- /dev/null +++ b/index.html @@ -0,0 +1,16 @@ + + + + + + Vue-Tachyon + + + + +
+

{{message}}

+
+ + + diff --git a/js/app.js b/js/app.js new file mode 100644 index 0000000..f202d44 --- /dev/null +++ b/js/app.js @@ -0,0 +1,6 @@ +const app = new Vue({ + el: "#app", + data: { + message: "Hello Vuejs and hello Tachyons!" + } +});