Created
November 20, 2025 20:57
-
-
Save MrYakobo/04964bbc3cefb3771f44161b98c53cb9 to your computer and use it in GitHub Desktop.
Vue2 index.html starter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!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