๐Ÿ“• 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>