Package Exports
- dsnit-utils
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (dsnit-utils) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
dsnit.core
TO BE IMPLEMENTED
vuetify-snackbar-queue
Simple plugin for queueing v-snackbars in Vuetify
- Extends VSnackbar component, allowing an array of snackbar items to be passed in.
- Queues Snackbars displaying one at a time
Install for use with Vuetify 2.*
npm install vuetify-snackbar-queue
please note that the auto-height prop for the VSnackbar component was deprecated in Vuetify 2 and is no longer available.
Install for use with Vuetify 1.5.*
npm install vuetify-snackbar-queue@1.0.0
Latest component docs
See the docs at Vuetify Snackbar Queue Docs
Use as Plugin
Import as plugin in your main.js file
//main.js
import Vue from "vue";
import VuetifySnackbarQueue from "vuetify-snackbar-queue";
Vue.use(VuetifySnackbarQueue);Use in templates
<template>
<v-snackbar-queue :items="items" @remove="() => {}"></v-snackbar-queue>
</template>Development Setup
Project setup
npm installCompiles and hot-reloads for development
npm run serveCompiles and minifies for production
npm run buildLints and fixes files
npm run lint