23 lines
451 B
HTML
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>
|