Possible to open modal from outside the vue component

前端 未结 5 520
别跟我提以往
别跟我提以往 2021-01-03 06:31

Is it possible to call a method from outside the component to make the component reuseable?

Right now I add my button to open the modal in a template slot:

<

5条回答
  •  天涯浪人
    2021-01-03 06:55

    Sure, accept a property to the modal component:

     props: ['open']
    

    Then pass it in:

     ... 
    

    Then:

提交回复
热议问题