• vue render 使用


    父组件:

    <template>
        <div class="p-home">
            <p v-for="(item,i) in c" :key="i">{{ i }}:{{ item }}</p>
            <childone>
              壹号按钮
            </childone>
            <!-- 添加点击事件 -->
            <childtwo @click="handleClick">二号按钮</childtwo>
            <hTitle :id="item" v-for="item of [1,2,3]" :key="item"></hTitle>
        </div>
    </template>
    <script>
    import childone from "./childone.js";
    import childtwo from "./childtwo.js";
    import hTitle from "./h-title.js";
    export default {
        name: 'home',
        components:{
            childone,childtwo,hTitle
        },
        methods: {
            handleClick() {
              alert('你点击了二号按钮')
            }
        }
    };
    </script>

    子组件:

    // 函数式组件 1  childone.js
    export default {
        name: 'childone',
        functional: true,
        render(h, context) {
            return h('button', '按钮')
        }
    }
    // 函数式组件 2 childtwo.js  接收子集 children
    export default {
        name: 'childtwo',
        functional: true,
        render(h, { props, listeners, children }) {
            return h('button',{
                attrs:props,
                on:{
                    click: listeners.click
                }
            },children)
        }
    }
    //h-title
    export default{
        name:'h-title',
        data(){
            return {
                txtlists:['一','二','三']
            }
        },
        props:{
            id:{type:Number,default:1}
        },
        render(){
            //jsx语法
            const htxt = `<h${this.id}>标题${this.txtlists[this.id - 1]}</h${this.id}>`
            return <div domPropsInnerHTML={htxt}></div>
        }
    }
  • 相关阅读:
    c++ 学习笔记
    python 2048游戏控制器
    c++ 动态内存
    c++ 拷贝构造函数、拷贝运算符、析构函数
    c++ struct enum union加typedef与不加typedef
    c++ 动态内存2
    c++ 指针数组与指向数组的指针
    c++ TextQuery程序
    c++ virtual
    c++ 动态内存 动态数组
  • 原文地址:https://www.cnblogs.com/mary-123/p/12395361.html
Copyright © 2020-2023  润新知