Skip to content

Instantly share code, notes, and snippets.

@foxfabi
Created May 12, 2021 12:43
Show Gist options
  • Save foxfabi/c15649268bb1e417c46b91bcca0108f9 to your computer and use it in GitHub Desktop.
Save foxfabi/c15649268bb1e417c46b91bcca0108f9 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Vue.js Examples</title>
</head>
<body>
<div id="app">
<h1>Vue.js Examples</h1>
<!-- PUT YOUR VUE.JS CONTENT HERE -->
</div>
<script loading="lazy" src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script>
var app = new Vue({
el: '#app'
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment