简体   繁体   中英

How to launch Bootstrap modal on page load in vuejs?

 function() { $("#modal1"); });
 <b-modal ref="modal1" id="modal1" @hide="getModalStatus" title="" class="modal-dialog modal-sm fade main-pop"> <div class="modal-content"> <p>hi launch Bootstrap modal on page load</p> </div> </b-modal>

How to launch Bootstrap modal on page load in vuejs? based on id i passed inside of function, but not sure how to proceed it.

I think you could call the modal using mounted(). I mean

mounted() {
 $("#modal1").modal('show'); 
},

if any questions, call me anytime.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM