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 => { });

猜你喜欢

转载自www.cnblogs.com/mailaidedt/p/12312999.html