box-o-sand/vuefun/static/index.html
2019-07-11 19:12:14 -04:00

23 lines
451 B
HTML

<!DOCTYPE html>
<html>
<head>
</head>
<body>
<div id="app">
<h1>{{ greeting }}</h1>
<p>{{ message }}</p>
<input v-model="message">
</div>
<script src="https://unpkg.com/vue"></script>
<script>
var app = new Vue({
el: '#app',
data: {
greeting: 'hello from the vue around ' + new Date().toLocaleString(),
message: 'wat'
}
})
</script>
</body>
</html>