diff --git a/README.md b/README.md index 12ac1a1..71b3d5e 100644 --- a/README.md +++ b/README.md @@ -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 vuetify-snackbar-queue@1.0.0``` + +## Latest component docs See the docs at [Vuetify Snackbar Queue Docs](https://ajanes93.github.io/vuetify-snackbar-queue/) diff --git a/src/components/VSnackbarQueue.vue b/src/components/VSnackbarQueue.vue index da68a5f..fce3af9 100644 --- a/src/components/VSnackbarQueue.vue +++ b/src/components/VSnackbarQueue.vue @@ -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 */