Skip to content

Instantly share code, notes, and snippets.

@MrYakobo
Created November 20, 2025 20:57
Show Gist options
  • Select an option

  • Save MrYakobo/04964bbc3cefb3771f44161b98c53cb9 to your computer and use it in GitHub Desktop.

Select an option

Save MrYakobo/04964bbc3cefb3771f44161b98c53cb9 to your computer and use it in GitHub Desktop.
Vue2 index.html starter
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My VueJS 2 app</title>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
</head>
<body>
<div id="app">
{{ tjenis }}
</div>
</body>
<script>
new Vue({
el: "#app",
data: {
tjenis: "hello"
}
})
</script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment