美文网首页
02_06.创建Vue组件

02_06.创建Vue组件

作者: Robyn_Luo | 来源:发表于2017-11-12 19:09 被阅读0次
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta http-equiv="X-UA-Compatible" content="ie=edge">
        <title>Document</title>
        <style>
            [v-cloak] {
                display: none;
            }
        </style>
    </head>
    <body>
        <div id="app">
            <app-test></app-test>
            <app-test></app-test>
            <app-test></app-test>
        </div>
    
        <script src="vue.js"></script>
        <script>
            // 创建一个组件
            Vue.component('app-test', {
                template: `<div>
                            <h1>{{ title }}</h1>
                            <p>{{ content }}</p>
                           </div>`,
                // 组件也有data选项, 但是值必须为一个函数retur一个数据对象
                // 这么写是因为, vue为了保证每个组件的数据都是独立的, 修改一个组件数据,其他不受影响
                data: function() {
                    return {
                        title: '震惊',
                        content: '女人流泪!, 男人沉默!'
                    };
                }
            });
    
            var vm = new Vue({
                el: '#app',
                data: {}
            });
        </script>
    </body>
    </html>
    

    相关文章

      网友评论

          本文标题:02_06.创建Vue组件

          本文链接:https://www.haomeiwen.com/subject/zlsomxtx.html