vue 隨瀏覽器語言變化語言

 vue 隨瀏覽器語言變化語言

  if((navigator.language || navigator.browserLanguage).toLowerCase().includes('zh-cn'))   
     {
         var _this = this;
           _this.$cookies.set("language", "Chinese", 60 * 60 * 24 * 30);
            _this.$i18n.locale = _this.$cookies.get("language");
           // location.reload();
     }else
     {
        
           var _this = this;
            _this.$cookies.set("language", "English", 60 * 60 * 24 * 30);
            _this.$i18n.locale = _this.$cookies.get("language");
     }

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章