91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何使用Element MessageBox彈框

發布時間:2020-07-27 13:44:51 來源:億速云 閱讀:800 作者:小豬 欄目:開發技術

這篇文章主要講解了如何使用Element MessageBox彈框,內容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。

組件—彈框

消息提示

如何使用Element MessageBox彈框

如何使用Element MessageBox彈框

<template>
 <el-button type="text" @click="open">點擊打開 Message Box</el-button>
</template>

<script>
 export default {
  methods: {
   open() {
    this.$alert('這是一段內容', '標題名稱', {
     confirmButtonText: '確定',
     callback: action => {
      this.$message({
       type: 'info',
       message: `action: ${ action }`
      });
     }
    });
   }
  }
 }
</script>

確認消息

如何使用Element MessageBox彈框

如何使用Element MessageBox彈框

<template>
 <el-button type="text" @click="open">點擊打開 Message Box</el-button>
</template>

<script>
 export default {
  methods: {
   open() {
    this.$alert('這是一段內容', '標題名稱', {
     confirmButtonText: '確定',
     callback: action => {
      this.$message({
       type: 'info',
       message: `action: ${ action }`
      });
     }
    });
   }
  }
 }
</script>

提交內容

如何使用Element MessageBox彈框

如何使用Element MessageBox彈框

<template>
 <el-button type="text" @click="open">點擊打開 Message Box</el-button>
</template>

<script>
 export default {
  methods: {
   open() {
    this.$prompt('請輸入郵箱', '提示', {
     confirmButtonText: '確定',
     cancelButtonText: '取消',
     inputPattern: /[\w!#$%&'*+/=&#63;^_`{|}~-]+(&#63;:\.[\w!#$%&'*+/=&#63;^_`{|}~-]+)*@(&#63;:[\w](&#63;:[\w-]*[\w])&#63;\.)+[\w](&#63;:[\w-]*[\w])&#63;/,
     inputErrorMessage: '郵箱格式不正確'
    }).then(({ value }) => {
     this.$message({
      type: 'success',
      message: '你的郵箱是: ' + value
     });
    }).catch(() => {
     this.$message({
      type: 'info',
      message: '取消輸入'
     });    
    });
   }
  }
 }
</script>

自定義

如何使用Element MessageBox彈框

如何使用Element MessageBox彈框

<template>
 <el-button type="text" @click="open">點擊打開 Message Box</el-button>
</template>

<script>
 export default {
  methods: {
   open() {
    const h = this.$createElement;
    this.$msgbox({
     title: '消息',
     message: h('p', null, [
      h('span', null, '內容可以是 '),
      h('i', { style: 'color: teal' }, 'VNode')
     ]),
     showCancelButton: true,
     confirmButtonText: '確定',
     cancelButtonText: '取消',
     beforeClose: (action, instance, done) => {
      if (action === 'confirm') {
       instance.confirmButtonLoading = true;
       instance.confirmButtonText = '執行中...';
       setTimeout(() => {
        done();
        setTimeout(() => {
         instance.confirmButtonLoading = false;
        }, 300);
       }, 3000);
      } else {
       done();
      }
     }
    }).then(action => {
     this.$message({
      type: 'info',
      message: 'action: ' + action
     });
    });
   }
  }
 }
</script>

使用 HTML 片段

如何使用Element MessageBox彈框

如何使用Element MessageBox彈框

<template>
 <el-button type="text" @click="open">點擊打開 Message Box</el-button>
</template>

<script>
 export default {
  methods: {
   open() {
    this.$alert('<strong>這是 <i>HTML</i> 片段</strong>', 'HTML 片段', {
     dangerouslyUseHTMLString: true
    });
   }
  }
 }
</script>

區分取消與關閉

如何使用Element MessageBox彈框

如何使用Element MessageBox彈框

<template>
 <el-button type="text" @click="open">點擊打開 Message Box</el-button>
</template>

<script>
 export default {
  methods: {
   open() {
    this.$alert('<strong>這是 <i>HTML</i> 片段</strong>', 'HTML 片段', {
     dangerouslyUseHTMLString: true
    });
   }
  }
 }
</script>

居中布局

如何使用Element MessageBox彈框

如何使用Element MessageBox彈框

<template>
 <el-button type="text" @click="open">點擊打開 Message Box</el-button>
</template>

<script>
 export default {
  methods: {
   open() {
    this.$confirm('此操作將永久刪除該文件, 是否繼續&#63;', '提示', {
     confirmButtonText: '確定',
     cancelButtonText: '取消',
     type: 'warning',
     center: true
    }).then(() => {
     this.$message({
      type: 'success',
      message: '刪除成功!'
     });
    }).catch(() => {
     this.$message({
      type: 'info',
      message: '已取消刪除'
     });
    });
   }
  }
 }
</script>

全局方法

如何使用Element MessageBox彈框

單獨引用

如何使用Element MessageBox彈框

Options

如何使用Element MessageBox彈框

如何使用Element MessageBox彈框

如何使用Element MessageBox彈框

如何使用Element MessageBox彈框

看完上述內容,是不是對如何使用Element MessageBox彈框有進一步的了解,如果還想學習更多內容,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

禹州市| 名山县| 合江县| 凤冈县| 九江县| 天津市| 繁峙县| 大洼县| 吉林省| 新和县| 塘沽区| 隆子县| 黄冈市| 固安县| 临漳县| 安顺市| 梨树县| 中方县| 交口县| 莲花县| 石台县| 北流市| 敦煌市| 黑河市| 辰溪县| 株洲县| 永川市| 谢通门县| 黔南| 米泉市| 宕昌县| 隆子县| 合川市| 博爱县| 滕州市| 龙山县| 稷山县| 安岳县| 瑞昌市| 静乐县| 邵东县|