Code Monkey home page Code Monkey logo

maucash-model's Introduction

maucash-model

一、使用方式

  • 1、安装

    npm install maucash-model
  • 2、在项目中的main.js文件中引入

    import MaucashModel from 'maucash-model';
    import 'maucash-model/lib/maucash-model.css';
    Vue.use(MaucashModel);
  • 3、组件中使用

    <button @click="openModel">点击打开弹框</button>
    <maucash-model v-model="model" draggable>内容</maucash-model>
    export default {
      data() {
        return {
          model: false,
        };
      },
      methods: {
        openModel() {
          this.model = true;
        },
      },
    };

二、主要的API

参数 类型 说明 默认值
title String 标题
isHideHeader Boolean 是否隐藏头部 false
isHideFooter Boolean 是否隐藏底部 false
closeFunc Function 关闭按钮的回调函数
closeText String 关闭按钮的文字 取消
confirmFunc Function 确认按钮的回调函数
confirmText Function 确认按钮的文字 确认
render Function 自定义底部,自己写一个jsx语法
width Number 弹框的宽度 450
height Number 弹框的高度 300
bodyStyle Object 内容体的样式 {}
draggable Boolean 是否可拖拽 false
isHideCloseBtn Boolean 是否隐藏取消按钮 false
isHideConfimBtn Boolean 是否隐藏确认按钮 false

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.