vue.js插件提示框模板寫法
阿新 • • 發佈:2017-06-08
一段 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插件提示框模板寫法