前端-vue基础54-组件注册

 

 

<!DOCTYPE html>
<html lang="en">
 
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<div id="app">
    <button-counter></button-counter>
</div>
 
<body>
    <script type="text/javascript" src="./js/vue.js"></script>
    <script>
        Vue.component('button-counter', {
            data: function() {
                return {
                    count: 0
                }
            },
            template: '<button @click="count++">点击了{{count}}次</button>'
        })
        var vm = new Vue({
            el: '#app',
            data: {
 
            }
        });
    </script>
</body>
 
</html>

 

posted @ 2022-07-23 22:30  前端导师歌谣  阅读(25)  评论(0)    收藏  举报