[TIL] Ionic ios 새탭으로 열기 동작안함

Captainjack·2022년 1월 19일
0

TIL

목록 보기
135/258

move_to_healing_contents() {
      console.log(self.$store.state.platform);
      if (self.$store.state.platform == "ios") {
        location.href = "/#/contents?type=2";
      } else {
        window.open("/#/contents?type=2", "_blank");
      }
    },

window.open()는 ios 새탭열기가 안된다.

location.href() 이건 됨

profile
til' CTF WIN

0개의 댓글