Adding index and app

master
androiddrew 7 years ago
parent 832d9fffa6
commit b84d49038d

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vue-Tachyon</title>
<link rel="stylesheet" href="/node_modules/tachyons/css/tachyons.min.css">
<script type="text/javascript" src="/node_modules/vue/dist/vue.min.js"></script>
</head>
<body class="bg-green white helvetica">
<div id="app">
<h1>{{message}}</h1>
</div>
<script type="text/javascript" src="/js/app.js"></script>
</body>
</html>

@ -0,0 +1,6 @@
const app = new Vue({
el: "#app",
data: {
message: "Hello Vuejs and hello Tachyons!"
}
});
Loading…
Cancel
Save