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!" + } +});