0.0.6 • Published 5 years ago

vuetify-notification v0.0.6

Weekly downloads
-
License
ISC
Repository
-
Last release
5 years ago

使用jstify-notification

jstify-notification是基于vuetify2.0 以及mdi字体封装的一个提示提醒组件,目的在于在项目中以最简便的编程式调用。(打包后仅有10k,欢迎使用vuetifyUI的朋友们使用,如若发现bug也欢迎指正,谢谢,多多star喔~)

食用步骤
  1. 众所周知,当我们自定义组件时需要自己封装还有在其他每个调用到的其他组件中引入,还要在template中标明标签,在这里使用到了编程式的思想,只需要在全局main.js里面引入一次即可全局在有vue实例的地方用简短的js实现调用,一劳永逸,你可以在一些比如需要提示的地方或者请求返回的地方调用。
  2. npm i -s vuetify-notification@latest

  3. 在项目的main.js中引入(目前该库提供了两个组件,diaolog与snackbar且都是基于vuetify编写,故当你需要自定义一些类如文字大写颜色等请参考vuetify的官网)

import {
	MDialogPlugin,
	MSnackBarPlugin,
} from 'vuetify-notification'; //使用过程中请确保您下载并注册了vuetify和@mdi
Vue.use(MDialogPlugin, {
	vuetify
});//dialog插件的添加方式
Vue.use(MSnackBarPlugin, {
	vuetify
});//snackbar插件的添加方式
  1. 只要在main.js中添加了即可在代码中的任何地方以最简单的方式在vue文件或者js文件中调用 dialog
//打开dialog
    this.$vn.MDialog.show({
					title: "我的dialog",
					titleIcon: "error",
					message: "你好66666666",
					onCancel() {
						console.log(1) // 非当前 vm
					},
					onConfirm() {
						console.log(2)
                    }
                    
                });
//关闭(可以主动调用也可以根据dialog内的确定或取消按钮关闭)
this.$vn.MDialog.hide()

npm.io

loading

	//打开
      this.$vn.MDialog.show({
        type:'loading',
        message: "数据加载中...",
        titleBarColor: "red",
	  });
	  
	  //关闭
	  this.$vn.MDialog.hide()

npm.io

bashow 函数的入参对象相关属性方法如下:

属性默认值类型描述
typeconfirmStringnotification类型是确认提示框(comfirm)还是加载条(loading)
messageString
titleString
titleIconString
showConfirmtrueBoolean
showCanceltrueBoolean
titleBarColorlight-blueString
iconColorblueString
minWidth400String or Number控制dialog的最小宽度
maxWidth400String or Number控制dialog的最大宽度
onConfirmundefinedfunction点击确定后的回调方法
onCancelundefinedfunction点击取消后的回调方法
comfirmText确定String确定按钮的文字
cancelText取消String取消按钮的文字

snackbar

    //打开
	this.$vn.MSnackbar.show({
					text: 'hello'
				})

npm.io
show方法的配置对象的属性如下: 属性|默认值|类型|描述 ----|-----|----|----| color|green|String mode|multi-line|String text|Hello, I\'m a snackbar|String timeout|6000|Number x |null|String
y|top|String
showCloseBtn|true|Boolean
closeBtnColor|pink|String

presented by:今天星期五(请尊重别人的劳动)

Build Setup

# install dependencies
npm install

# serve with hot reload at localhost:8080
npm run dev

# build for production with minification
npm run build

For detailed explanation on how things work, consult the docs for vue-loader.