建立私有元件

青春最美,慶幸遇見karry發表於2020-11-09
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>建立區域性元件</title>
    <script src="./vue.js"></script>
</head>
<body>
    <div id="app">
        <templ></templ>
    </div>
    <script>
        var vm=new Vue({
            el:'#app',
            data:{},
            methods:{},
            components:{
                templ:{
                    template:'<h1>私有元件</h1>'
                }
            }
        })
    </script>
</body>
</html>

相關文章