Skip to content

Commit

Permalink
tidied up prop definition for autoheight and updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Andres Janes committed Jun 3, 2020
1 parent 2e4b0dd commit e156c42
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
# vuetify-snackbar-queue
>Simple plugin for queueing v-snackbars in Vuetify
* Extends VSnackbar component and adds items[] prop
* Extends VSnackbar component, allowing an array of snackbar items to be passed in.
* Queues Snackbars displaying one at a time

## Docs
## 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 [email protected]```

## Latest component docs

See the docs at [Vuetify Snackbar Queue Docs](https://ajanes93.github.io/vuetify-snackbar-queue/)

Expand Down
9 changes: 9 additions & 0 deletions src/components/VSnackbarQueue.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,15 @@
type: Boolean,
default: false
},
/**
* @deprecated since v2.0.0
*
* Auto height prop for snackbar
*/
autoHeight: {
type: Boolean,
default: false
},
/**
* Position snackbar bottom
*/
Expand Down

0 comments on commit e156c42

Please sign in to comment.