Skip to content

Instantly share code, notes, and snippets.

@ricky11
Created April 21, 2018 08:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ricky11/daf30700e74f9322a4142af7961042af to your computer and use it in GitHub Desktop.
Save ricky11/daf30700e74f9322a4142af7961042af to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/zujuqol
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<script src="https://unpkg.com/vue"></script>
</head>
<body>
<h1>Animation of a list</h1>
<div id="app">{{message}}</div>
<script>
new Vue({
el: '#app',
data: function() {
return {
message: 'hello'
}
}
})
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment