Skip to content

Instantly share code, notes, and snippets.

@cursosdesarrolloweb
Created October 2, 2020 05:08
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 cursosdesarrolloweb/d512c66b8a185bc1ed566672d4877038 to your computer and use it in GitHub Desktop.
Save cursosdesarrolloweb/d512c66b8a185bc1ed566672d4877038 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CDN en Vue 2</title>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head>
<body>
<div id="app">
</div>
<script>
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