//这是一个table里的其中一行
<el-link :underline="false" :href="getBaseUrl(this.bucket,scope.row.key)">下载文件</el-link>
methods: {
getBaseUrl(bucket,key){
let _that = this
axios.get('/admin/qiniu/geturl',{params:{'bucket': bucket, 'key': key}})
.then(function (response) {
return response.data
})
.catch(function (error) {
console.log(error)
})
},
}
v-bind不能直接调用methods里的返回值吗?应该怎么写才对?
为什么不用onclick呢