[Vuejs]-How To Show Modal AUTOMATICALLY with VueJS (+ Laravel)

0๐Ÿ‘

โœ…

<script>
export default {
  data() {
    return {
       showModal: false
    };
  },
  mounted(){
    let currentDate = new Date();
    if ((currentDate.getDay() == 0 && currentDate.getHours() < 18 ) 
            || (currentDate.getDay() == 6 && currentDate.getHours() > 18)) {
       this.showModal = true
    }
  }
}
</script>

 

Leave a comment