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

vue-message-plugin-ts

v1.5.0

Published

A message plugin base on Vue with Typescript support

Downloads

35

Readme

vue-message-plugin-ts

A message plugin base on Vue with Typescript support

supports only Vue 3

Preview

Docs page | Live Demo

Installation

you can install the package yarn:

yarn add vue-message-plugin-ts

or npm:

npm i vue-message-plugin-ts

Register Plugin

import { createApp, h } from 'vue'
import Message from 'vue-message-plugin-ts'
import 'vue-message-plugin-ts/dist/style.css'
import App from './App.vue'

const app = createApp(App)

app.use(Message)
// or
app.use(Message, options?: { position?: IMessagesOption } as IMessagesOption)

app.mount('#app')

Usage

// App.vue
<template>
  <app-messages />
  <component :is="layoutName">
    <RouterView />
  </component>
</template>

Usage in components

// Component.vue
<script lang="ts" setup>
import { inject } from 'vue'

const message = inject('message')

function errorAction () {
  message.addNewMessage({
    title: 'Action error',
    type: 'error',
    duration: 5000,
  })
}

function startWait () {
  message.startWait()
}

function stopWait () {
  message.stopWait()
}

</script>

Messages API

MessagesOption

| Attribute | Descripttion | Type | Optional value | Default | | --- | --- | --- | --- | --- | | position | Messages display position | string | ‘top-left’, ‘top-center’, ‘top-right’, ‘right-center’, ‘bottom-right’, ‘botom-center’, ‘bottom-left’, ‘left-center’ | ‘top-right’ |

Messages

| Attribute | Descripttion | Type | Optional value | Default | | --- | --- | --- | --- | --- | | addNewMessage | Adding a new message | (message: IMessageItem) ⇒ void | IMessageItem | — | | removeMessage | Remove message by id | (id: TMessageId) ⇒ void | TMessageId | — | | startWait | Wait loader message | (message?: IMessageItem) ⇒ void | IMessageItem | | | stopWait | Stop wait loader message | (id?: TMessageId) ⇒ void | TMessageId | |

Message for create (Message)

| Attribute | Descripttion | Type | Optional value | Default | required | | --- | --- | --- | --- | --- | --- | | body | Body of message | TMessageField | — | — | — | true | | duration | Duration of message, if you don't add duration then you have to remove it yourself | number | — | — | false | | type | Type of message | TMessageTypes | ‘error’, ‘success’, ‘warning’, ‘custom’, ‘wait’ | — | true | | img | Icon image of message | TMessageField | — | — | false | | class | Class of message | TMessageClass | — | — | false | | key?: string | Key of message | string | — | — | false |

Types List

  • type TMessageField = string | {value: string | any, class: TMessageClass}
  • type TMessageTypes = ‘error’ | ‘success’ | ‘warning’ | ‘custom’ | ‘wait’
  • type TMessageClass = string | string[]
  • type TMessageId = number | string

Template, Slot names

| Name | Descripttion | Value | | --- | --- | --- | | message__img-wait | Message slot name for wait messages icon image | IMessageItem | | message__img-success | Message slot name for success messages icon image | IMessageItem | | message__img-error | Message slot name for error messages icon image | IMessageItem | | message__img-warning | Message slot name for warning messages icon image | IMessageItem | | message__img-custom | Message slot name for custom messages icon image | IMessageItem | | message__title-wait | Message slot name for wait messages title | IMessageItem | | message__title-success | Message slot name for success messages title | IMessageItem | | message__title-warning | Message slot name for warning messages title | IMessageItem | | message__title-error | Message slot name for error messages title | IMessageItem | | message__title-custom | Message slot name for custom messages title | IMessageItem |

Tip !!

You can add wait message with method startWait and this method creates default message, if you want to add custom wait message you can use method addNewMessage() and then if you want to stop this custom message u can use stopWait agait but with argument id that has been given when created message so you can create default wait message also custom wait message

License

Licensed as MIT.