### 本地化
~~~
message = '測試工作';
options = {
okText: '確定', // 本地化確認按鈕文字提示內容
cancelText: '取消', //本地化關閉按鈕文字提示內容
}
this.$dialog.alert(message, options);
~~~

****
### 顯示標題與內容
~~~
message = {
title: '友情提示',
body: '測試工作'
}
this.$dialog.alert(message);
~~~
