(window.webpackJsonp=window.webpackJsonp||[]).push([[34],{1231:function(s,t,a){},1327:function(s,t,a){"use strict";var n=a(1231);a.n(n).a},1424:function(s,t,a){"use strict";a.r(t);var n=function(){var s=this,t=s.$createElement,a=s._self._c||t;return a("div",[[a("demo-box",{attrs:{jsfiddle:{html:'\n
\n Open Modal with async logic\n \n

{{ModalText}}

\n
\n
\n',script:"\n export default {\n data() {\n return {\n ModalText: 'Content of the modal',\n visible: false,\n confirmLoading: false,\n };\n },\n methods: {\n showModal() {\n this.visible = true;\n },\n handleOk(e) {\n this.ModalText = 'The modal will be closed after two seconds';\n this.confirmLoading = true;\n setTimeout(() => {\n this.visible = false;\n this.confirmLoading = false;\n }, 2000);\n },\n handleCancel(e) {\n console.log('Clicked cancel button');\n this.visible = false;\n },\n },\n };\n",style:null,us:"\n#### Asynchronously close\nAsynchronously close a modal dialog when a user clicked OK button, for example,\nyou can use this pattern when you submit a form.\n",cn:"\n#### 异步关闭\n点击确定后异步关闭对话框,例如提交表单。\n",sourceCode:'\n