<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>