Skip to content

Instantly share code, notes, and snippets.

@anderaus
Created October 29, 2018 18:18
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 anderaus/2a9bddfaf9914c3768b82ed89ffb6fbf to your computer and use it in GitHub Desktop.
Save anderaus/2a9bddfaf9914c3768b82ed89ffb6fbf to your computer and use it in GitHub Desktop.
Minimal vue cdn starter
<!DOCTYPE html>
<html>
<body>
<div id="app">
<h1>{{heading}}</h1>
<ul style="list-style: none">
<li>
Et dyr
</li>
</ul>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17/vue.js"></script>
<script>
new Vue({
el: '#app',
data: {
heading: 'Dyrehage',
animals: ['Alpakka', 'Giraff', 'Dovendyr', 'Elg']
}
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment