Created
August 11, 2015 22:29
-
-
Save lemesdaniel/1a8c534816d84ccb3aca to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Exemplo Laravel e Fanout</title> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css"> | |
</head> | |
<body > | |
<div class="container"> | |
<h1>Lista de posts</h1> | |
<ul class="list-group" id="list"> | |
<li v-repeat="posts" class="list-group-item"> | |
@{{title}} | |
</li> | |
</ul> | |
</div> | |
<script src="http://9b1cf4d8.fanoutcdn.com/bayeux/static/faye-browser-min.js"></script> | |
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/vue/0.12.10/vue.min.js"></script> | |
<script type="text/javascript" src="app.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment