How to realize the input box of Vue pop-up box

requirements: after clicking reply, pop-up input box to reply
my project uses the Vue framework, how to achieve this pop-up box?

Nov.04,2021

you did not use the ui framework, such as vant,elementui, etc., basically waiting for this kind of pop-up box


to do it yourself is very simple, you can first hide the input boxes in DIV and div, and click the button to show that div, sends the value of input when it is sent on the ok. Various methods


html :

<button @click='isShow = true'></button>
<!--  -->
<div class='reply' :isShow='isShow'></div>

js :

new Vue({
    el: '-sharpapp' , 
    data: {
        isShow: false
    }
});
Menu