Vue--小知识整理
Posted mailaidedt
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue--小知识整理相关的知识,希望对你有一定的参考价值。
1. 自动获取空间属性
el-input ref="xx"
$.refs[‘‘xx"].focus()
2.confirm确认框
this.$confirm(‘<b>xxxxxx</b>:‘+this.temp.summary+‘<br/><b>yyyyyyyyyyy</b>:‘+apires, ‘确认信息‘, {
distinguishCancelAndClose: true,
dangerouslyUsehtmlString:true,
confirmButtonText: ‘替换‘,
cancelButtonText: ‘放弃‘
})
.then(() => {
this.temp.summary=apires
})
.catch(action => { });
以上是关于Vue--小知识整理的主要内容,如果未能解决你的问题,请参考以下文章