ele-dialog

1.0.1 • Public • Published

ele-dialog

一、使用方式

  • 1、安装

    npm install ele-dialog
    或者
    yarn add ele-dialog
  • 2、在项目中的main.js文件中引入

    import EleDialog from "ele-dialog"
    import "ele-dialog/lib/ele-dialog.css"
    Vue.use(EleDialog)
  • 3、组件中使用

    <template>
      <div id="app">
        <ele-dialog v-model="visible" :confirmFunc="confirmBtn" title="新增">
          <template slot="dialog-body">
            内容区域
          </template>
        </ele-dialog>
      </div>
    </template>
    
    <script>
      export default {
        name: "app",
        data() {
          return {
            visible: false
          }
        },
        methods: {
          openModel() {
            this.visible = true
          },
          confirmBtn() {
            this.visible = false
            console.log("提交,回调")
          }
        }
      }
    </script>

二、主要的API

参数 类型 说明 默认值
confirmFunc Function 提交回调
title String 标题

Package Sidebar

Install

npm i ele-dialog

Weekly Downloads

0

Version

1.0.1

License

MIT

Unpacked Size

23.1 kB

Total Files

3

Last publish

Collaborators

  • cqh52306