๐ Language/Vue
[Age of Vue] Vue.js ์์ํ๊ธฐ - 12.์ง์ญ ์ปดํฌ๋ํธ
a n u e
2022. 5. 1. 16:50
์ง์ญ ์ปดํฌ๋ํธ ๋ฑ๋ก
new Vue({
el : '#app',
//๊ฐ์ฒด ๋ฆฌํฐ๋ด ์ด์ด์ค๋ค.
//key-value
component :
{
'์ปดํฌ๋ํธ ์ด๋ฆ' : ์ปดํฌ๋ํธ ๋ด์ฉ
}
});
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div id="app">
<app-footer></app-footer>
</div>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script>
//์ง์ญ ์ปดํฌ๋ํธ
new Vue({
el : '#app',
components :
{
'app-footer' : {
template : '<footer>footer</footer>'
}
}
});
</script>
</body>
</html>