first commit

This commit is contained in:
Tyrel Souza 2018-04-13 10:54:53 -04:00
commit bcbae5539e
No known key found for this signature in database
GPG Key ID: 5A9394D4C30AEAC0
2 changed files with 23 additions and 0 deletions

6
app.js Normal file
View File

@ -0,0 +1,6 @@
var app = new Vue({
el: '#app',
data: {
title: "Hello world."
}
})

17
index.html Normal file
View File

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head>
<body>
<div id='app'>
<p>{{ title }}</p>
</div>
<script src="app.js" charset="utf-8"></script>
</body>
</html>