oh my what an mess
This commit is contained in:
22
vuefun/static/index.html
Normal file
22
vuefun/static/index.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<!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>
|
Reference in New Issue
Block a user