npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@chua1989/v-dialog

v2.1.2

Published

基于vue2.0的dialog/toast组件,包括pc和h5两个版本。支持函数调用和组件调用。文档全面,容易上手

Downloads

1

Readme

v-dialog

基于vue2.0的dialog组件
功能包括:dialog和toast。分为pc和h5版本
h5版本文档查看:H5文档
代码安装

npm install @chua1989/v-dialog --save

dialog

用法一、全局配置

引入
全部引入

// index.js
// 必须先引入vue
import Vue from 'vue'
import ALL from '@chua1989/v-dialog'

Vue.use(ALL);

按需引入

// index.js
// 必须先引入vue
import Vue from 'vue'
import { VDialog } from '@chua1989/v-dialog'

Vue.use(VDialog) // 或者Vue.component(VDialog.name, VDialog)
// 如果只想使用函数调用方式则使用下面的方式
Vue.prototype.$dialog = VDialog.func

使用
函数调用

// demo.vue
<script>
export default {
    mounted() {
        this.$dialog('这是一个dialog的基本例子,通过函数直接调用')
        // 或者
        this.$dialog({
            msg: '这是一个dialog的基本例子,通过函数直接调用'
        })
    }
}
</script>

【注】对于函数调用的dialog来说,同一时间只展示一个dialog。即:如果当前有正在展示的dialog,则后续调用的dialog无效

组件调用

<template>
    <div>
        <v-dialog :isShow.sync="isDialogShow" msg="这是一个dialog组件实现的对话框"></v-dialog>
    </div>
</template>

用法二、Vue组件内配置

引入 + 使用
函数调用

// demo.vue
import { VDialog } from '@chua1989/v-dialog'
<script>
export default {
    mounted() {
        VDialog.func({
            msg: '这是一个dialog的基本例子,通过函数直接调用'
        })
    }
}
</script>

组件调用

<template>
    <div>
        <VDialog :isShow.sync="isDialogShow" msg="这是一个dialog组件实现的对话框"></VDialog>
    </div>
</template>

<script>
import { VDialog } from '@chua1989/v-dialog'
export default {
    components: { VDialog }
}
</script>

参数说明

isShow: {
    描述:对话框是否展示。只有在组件调用方式才起作用
    类型: Boolean,
    默认值: false,不展示
},
title: {
    描述:对话框标题
    类型: String,
    默认值: '提示'
},
msg: {
    描述:文本内容
    类型: String,
    默认值: ''
},
hasNo: {
    描述:是否展示“取消”按钮
    类型: Boolean,
    默认值: false,不展示取消按钮
},
hasYes: {
    描述:是否展示“确定”按钮
    类型: Boolean,
    默认值: true,展示确定按钮
},
noText: {
    描述:“取消”按钮的文本
    类型: String,
    默认值: '取消'
},
yesText: {
    描述:“确定”按钮的文本
    类型: String,
    默认值: '确定'
},
// 主题颜色
themeColor: {
    描述:主题颜色
    类型: String,
    默认值: '#409eff'
},
zIndex: {
    描述:对话框的z-index值
    类型: Number,
    默认值: 100
},
onNo: {
    描述:点击“取消”后的回调。弹窗会被关闭
    类型: Function,
    默认值: () => {}
},
onYes: {
    描述:点击“确定”后的回调。弹窗会被关闭
    类型: Function,
    默认值: () => {}
},
onClose: {
    描述:点击右上角“关闭”按钮后的回调。弹窗会被关闭
    类型: Function,
    默认值: () => {}
}

toast

由于toast的功能比较单一,所以不提供组件调用的方式

用法一、全局配置

引入
全部引入参考dialog部分
按需引入

// index.js
// 必须先引入vue
import Vue from 'vue'
import { VToast } from '@chua1989/v-dialog'
Vue.prototype.$toast = VToast

使用
函数调用

// demo.vue
<script>
export default {
    mounted() {
        this.$toast('这是一个toast的基本例子')
    }
}
</script>

【注】对于toast来说,默认同一时间可以展示多个,从上往下排列
要想只展示一个toast,则给所有的toast设置相同的id,id相同的toast同一时间只展示一个

this.$toast({ id: 'only-one', msg: '复制成功' })

用法二、Vue组件内配置

引入 + 使用

// demo.vue
<script>
import { VToast } from '@chua1989/v-dialog'
export default {
    mounted() {
        VToast({
            id: 'only-one',// id相同的toast同一时间只展示一个
            msg: '这是一个toast的基本例子'
        })
    }
}
</script>

参数说明

id: {
    描述:toast的id
    类型: String,
    默认值: 'toast_xx',其中xx是一个自增的数字
},
msg: {
    描述:展示文本
    类型: String,
    默认值: ''
},
duration: {
    描述:toast显式时长
    类型: Number,
    默认值: 3000,单位毫秒
},
type: {
    描述:类型,支持error/success/warning/info四种类型,不同类型背景展示不同
    类型: String,
    默认值: 'info'
},
zIndex: {
    描述:toast框的z-index值
    类型: Number,
    默认值: 101
},
firstTop: {
    描述:第一个toast到文档顶部的距离
    类型: Number,
    默认值: 50, 单位px
},
gap: {
    描述:相邻两个toast的垂直间隔
    类型: Number,
    默认值: 20, 单位px
},
onClose: {
    描述:关闭后的回调
    类型: Function,
    默认值: () => {}
}