vue.js 21

<html>
<head>
<title>test21</title>
</head>

<body>
<div id="app">
<child-component1></child-component1>
<child-component2></child-component2>
</div>


<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<script>
var child1 = {
template : '<div>만나서 반가워요</div>'
}

var child2 = {
template : '<div>고맙습니다</div>'
}


new Vue({
el:'#app',
components:{
'child-component1':child1,
'child-component2':child2
}
})
</script>
</body>
</html>

댓글

이 블로그의 인기 게시물

[c#] DataTable을 dataGridView에 바인딩

[React] index.html 수정하기

[React] 프로젝트 생성