单击按钮时,Vuejs会重定向到url

时间:2018-05-04 07:11:55

标签: html vue.js vuejs2

我有一个按钮,当我点击时,我希望它重定向到一个开始传递的网址。

这是我的代码。

<template>
<button type="button" v-on:click="gotosite(modalDetails.final.product_url)">Buy</button>
</template>

<script>
 .
 ..
 ...
 .....
 methods : {
        gotosite(producturl){
        this.window.location.href = producturl
            }

</script>
<style></style>

当我点击按钮时,它不会将我重定向到网址。

我正在考虑让标签看起来像按钮并使用它重定向但是如何通过按钮来实现。

1 个答案:

答案 0 :(得分:3)

这可能是因为窗口不是public void FileUpload(IWebDriver driver,string pathOfFolder, string attachmentFile) { var filePath = Path.Combine(pathOfFolder, attachmentFile); if(File.Exists(filePath)) { driver.FindElement(By.XPath("//input[@type='file']")).SendKeys(filePath); } } 的对象。尝试只使用this,它应该可以正常工作。