2020
10-08
10-08
Element MessageBox弹框的具体使用
组件—弹框消息提示<template><el-buttontype="text"@click="open">点击打开MessageBox</el-button></template><script>exportdefault{methods:{open(){this.$alert('这是一段内容','标题名称',{confirmButtonText:'确定',callback:action=>{this.$message({type:'info',message:`action:${action}`});}});}}}</script>确认消息<template><el-...
继续阅读 >