0

特定の高さと幅で新しいウィンドウを開く必要があります。

vuejs2 では、次のようなものがあります。

<el-table-column label="Link" width="80">
  <template scope="props">
    <a v-bind:href="''+props.row.link+''" target="chart"> Link to chart </a>
  </template>
</el-table-column>

そして props.row.link には次のものがあります: http://host/charts/index.php?par=sth したがって、この href は新しいタブで開きますが、高さと幅はなく、新しいウィンドウでは開きません。

at html はとても簡単です:

<a href="http://host/charts/index.php?par=1" onclick="window.open('http://host/charts/index.php?par=1', 'chart', 'width=1225, height=770'); return false;">Link to chart</a>

おそらくクリックメソッドとして、vue js 2でこれを達成する方法は?

4

2 に答える 2