Last active
August 22, 2017 12:10
-
-
Save rosd89/76f0a18ec4e088179d0822a1c415500c to your computer and use it in GitHub Desktop.
Vue·tiful Korea 170823 컴포넌트야 놀자
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>todo</title> | |
</head> | |
<body> | |
<div id="root"></div> | |
</body> | |
<script src="https://unpkg.com/vue"></script> | |
<script type="application/javascript"> | |
Vue.component('todo-content', { | |
template: ` | |
<div style="width: 720px; background: #dddddd; margin: 0 auto;"> | |
<h1>Todo List</h1> | |
<slot></slot> | |
</div>` | |
}); | |
new Vue({ | |
el: '#root', | |
template: `<todo-content></todo-content>`, | |
}); | |
</script> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment