data中写入url,控制台可以打印,请问如何通过el-button @click进行跳转?

<el-table-column label="操作" width="450">  
    <template slot-scope="scope">
       <el-button @click="handleClick(scope.row.url)" type="text" size="small">查看</el-button>
    </template>
</el-table-column>    

data里面写了每条数据的链接
img

通过@ click 可以打印出url
img

img

如何通过点击打开打印的url链接呢?

这样就行,你为什么要把url加引号

window.open(url ,'_blank')

你注释掉的方法不可以吗