1.0.0 • Published 1 year ago

jx-vue2-show-modal v1.0.0

Weekly downloads
-
License
-
Repository
-
Last release
1 year ago

介绍

基于vue2.0的提示框组件

组件使用

安装

npm i jx-vue2-show-modal --save

初始化

import ShowModal from 'jx-vue2-show-modal';
Vue.use(ShowModal);

使用

 <script>

 export default {
   name: 'App', 
   mounted() {
    this.$showModal({
      title: '',   //标题
      content: '',  //文本内容
      centerText: false, // true则文案居中显示
      showCloseBtn: false,  //true显示右上角关闭功能, false展示底部按钮,默认false
      confirmText: '确定',  //确定按钮文案
      confirmColor: confirmColor || '#FF5D05',  //确定按钮颜色
      showCancel: showCancel == null ? true : showCancel  //是否展示取消按钮
      cancelText: '取消', //取消按钮文案
      success: () => {
        console.log('成功')
      }
    })  
   } 
 }
 </script>

 
1.0.0

1 year ago