-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from ajanes93/feature/vuetify-upgrade
Feature/ Vuetify Upgrade
- Loading branch information
Showing
13 changed files
with
1,184 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/) | ||
|
||
|
30 changes: 15 additions & 15 deletions
30
docs/build/bundle.7991323e.js → docs/build/bundle.2a5699e6.js
Large diffs are not rendered by default.
Oops, something went wrong.
1,035 changes: 1,018 additions & 17 deletions
1,035
docs/build/chunk-vendors.bb99bf55.js → docs/build/chunk-vendors.69a58d08.js
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<!DOCTYPE html><html><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta http-equiv="X-UA-Compatible" content="ie=edge"><title>Vuetify Snackbar Queue</title><link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons" rel="stylesheet"></head><body><div id="rsg-root"></div><script src="build/chunk-vendors.bb99bf55.js"></script><script src="build/bundle.7991323e.js"></script></body></html> | ||
<!DOCTYPE html><html><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta http-equiv="X-UA-Compatible" content="ie=edge"><title>Vuetify Snackbar Queue</title><link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons" rel="stylesheet"></head><body><div id="rsg-root"></div><script src="build/chunk-vendors.69a58d08.js"></script><script src="build/bundle.2a5699e6.js"></script></body></html> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import Vue from 'vue' | ||
import Vuetify, {VApp, VBtn, VCol, VContainer, VContent, VIcon, VLayout, VRow, VSnackbar} from 'vuetify/lib' | ||
|
||
Vue.use(Vuetify, { | ||
components: {VApp, VLayout, VContainer, VContent, VRow, VCol, VBtn, VSnackbar, VIcon} | ||
}) | ||
|
||
export default new Vuetify({ | ||
icons: { | ||
iconfont: 'md' | ||
} | ||
}) |
Oops, something went wrong.