美文网首页
递归组件

递归组件

作者: 鱼蛋杰 | 来源:发表于2020-02-16 19:40 被阅读0次

    通过设置name就可以递归的调用自己

    Vue.component("child-component",{

    name:"child-compoent",

    props:{count:{tyle:Numbet,defaullt:1}}

    template:"

    <div><child-component :count='count+1' v-if='count<3'></child-component></div>"

    })

    要注意一点设置nane后必须要添加一个条件来限制递归数量;否则会报错

    相关文章

      网友评论

          本文标题:递归组件

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