You've already forked vue-learning
basic hello world
This commit is contained in:
35
hello/index.html
Normal file
35
hello/index.html
Normal file
@ -0,0 +1,35 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>titleee</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<script src="https://vuejs.org/js/vue.js"></script><!-- dev version -->
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app">
|
||||
<p v-bind:title="label">
|
||||
{{ message }}
|
||||
<button v-on:click="showspan = !showspan">toggle</button>
|
||||
<transition name="fade">
|
||||
<span v-if="showspan">Now you see me</span>
|
||||
</transition>
|
||||
</p>
|
||||
|
||||
<ol>
|
||||
<todo-item
|
||||
v-for="item in todos"
|
||||
v-bind:todo="item"
|
||||
v-bind:key="item.id">
|
||||
</todo-item>
|
||||
</ol>
|
||||
|
||||
<button v-on:click="reverseMessage">Reverse Message</button>
|
||||
|
||||
<input v-model="message">
|
||||
</div>
|
||||
|
||||
<script src="app.js"></script>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user