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

vuetify-snackbar-message

v0.1.5

Published

一个基于vuetify的message组件

Downloads

13

Readme

$message消息提示

代码展示

this.$message({
      message: "成功成功",
      type: "success",
      icon: { name: "mdi-alarm", color: '#f43143' },
      show: true,
      outlined: true,
      shaped: true,
      top: true,
      html: true,
      text: true,
      duration: 2000,
      closeBtn: true,
      close() {
        console.log(123);
      },
    });

参数详情

msg参数

| 参数 | 默认值 | 类型 | 说明 | | :------: | :-----: | :-----------: | :----------------------------------------------------------: | | type | success | String | 提示框类型有success、warning、error、info四种。 | | message | - | String | 需要显示的提示文字。 | | timeout | 3000 | Number/String | 等待message 自动隐藏的时间 (毫秒) 。使用 “-1” 保持无限期打开 。 | | icon | - | Object | message的icon图标及背景色配置。具体参数说明见下方icon参数表。 | | closeBtn | false | Boolean | 关闭按钮,可手动关闭message提示框,默认不显示。 | | close | 0.2 | Function | 点击关闭按钮的钩子 | | top | false | Boolean | message靠顶部显示 | | left | false | Boolean | message靠左侧显示 | | right | false | Boolean | message靠右侧显示 | | text | false | String | 将定义的 color 应用于文本和同样的低透明度背景。 | | outlined | false | String | 去除卡片的实心颜色并添加细边框。 | | shaped | false | String | 在卡片的左上角和右下角应用较大的边框半径。 | | html | false | Boolean | message消息可以识别html标签 |

icon参数

| 参数 | 默认值 | 类型 | 说明 | | :---: | :------------------------------------------------: | :----: | :----------------------------------------------------------: | | icon | type四种状态各有一个默认值,就不细说了,自己试试。 | String | icon图标, 对于所有可用图标的列表, 请访问官方的 Material Design 图标 页面。要使用任何这些图标,只需使用 mdi- 前缀,然后是图标名称 | | color | 如上 | String | message提示框的背景色。 |