1. 程式人生 > >vue.js插件提示框模板寫法

vue.js插件提示框模板寫法

一段 ssa show info methods ring ams spa regex

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

<script>
  export default {
    methods: {
      open4() {
        this.$msgbox({
          title: ‘消息‘,
          message: ‘這是一段內容, 這是一段內容, 這是一段內容, 這是一段內容, 這是一段內容, 這是一段內容, 這是一段內容‘,
          showCancelButton: true,
          confirmButtonText: ‘確定‘,
          cancelButtonText: ‘取消‘
        }).then(action => {
          this.$message({
            type: ‘info‘,
            message: ‘action: ‘ + action
          });
        });
      },
    }
  }
</script>

vue.js插件提示框模板寫法