/vue_tutorials.html Secret
Created
March 5, 2021 02:28
뷰 인스턴스 생성방법
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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>MessageApp</title> | |
</head> | |
<body> | |
<div id="app"></div> | |
<script src="https://unpkg.com/vue@2.5.13/dist/vue.js"></script> | |
<script> | |
let vm = 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