Skip to content

Instantly share code, notes, and snippets.

@profh
Last active April 10, 2018 01:28
Show Gist options
  • Save profh/85147ca521884d21310974b23c0fd176 to your computer and use it in GitHub Desktop.
Save profh/85147ca521884d21310974b23c0fd176 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Tab Components in Vue</title>
<script src="http://code.jquery.com/jquery-3.2.1.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/js/materialize.min.js"></script>
<script type="text/javascript" src="https://unpkg.com/vue@2.5.9/dist/vue.js"></script>
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$('ul.tabs').tabs();
});
</script>
</head>
<body>
<div class="container">
<div id="main">
<!-- TABS WILL GO HERE -->
</div> <!-- end of div#main -->
</div> <!-- end of div.container -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment