mounted() {
window.toRecord = this.toRecord
},
methods: {
fun1(){
this.$confirm(
`<div>
文件已上传成功,正在解析中, 可前往 <a style="color: #1890ff; text-decoration: underline" id="toRecord" onclick="toRecord()">导入记录</a> 查看导入进度。
</div>`,
'提示',
{
dangerouslyUseHTMLString: true,
confirmButtonText: '确定',
type: 'warning',
}
)
.then(() => {
this.$message({
type: 'success',
message: '操作成功!',
})
})
},
toRecord() {
console.log('000000')
alert('记录')
},
}
vue在模板字符串html结构里绑定事件
最新推荐文章于 2024-04-28 11:51:43 发布