首页 > 解决方案 > 如何使用 VueJS (+ Laravel) 自动显示模态

问题描述

基本上我希望我在网站上的模态仅在周六下午 6 点到周日下午 6 点自动出现。

使用 vuejs (+ laravel) 怎么可能?如果我在 vuejs 中添加一些脚本可以吗?如果是,那怎么办?因为我有问题,所以我在互联网上找不到适合我的确切解决方案。

谢谢

标签: laravelvue.js

解决方案


<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>

 

推荐阅读