vue 动态跳转外链并打开新窗口

html:

       

js:

  getNewsDetail(url){
    var tempwindow=window.open('_blank');
     tempwindow.location=url;
  }

 

你可能感兴趣的:(vue,经验分享)