├── static └── .gitkeep ├── .eslintignore ├── config ├── prod.env.js ├── test.env.js ├── dev.env.js └── index.js ├── src ├── assets │ └── logo.png ├── components │ └── Toast │ │ ├── template.html │ │ ├── index.css │ │ ├── package.json │ │ └── index.js ├── main.js └── App.vue ├── .babelrc ├── .gitignore ├── .editorconfig ├── index.html ├── docs ├── index.html └── static │ ├── js │ ├── manifest.1992ad6907126b49e557.js │ ├── app.2afdeb63cc73edf761aa.js │ ├── manifest.1992ad6907126b49e557.js.map │ ├── app.2afdeb63cc73edf761aa.js.map │ └── vendor.f36392182cdef8a7a738.js │ └── css │ ├── app.48da4dae6e4c815ccf59bdc0356cdc48.css │ └── app.48da4dae6e4c815ccf59bdc0356cdc48.css.map ├── LICENSE ├── package.json └── README.md /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | build/*.js 2 | config/*.js 3 | -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frehaiku/vue-toast/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-2"], 3 | "plugins": ["transform-runtime"], 4 | "comments": false 5 | } 6 | -------------------------------------------------------------------------------- /src/components/Toast/template.html: -------------------------------------------------------------------------------- 1 |
7 | A Vue component show tip to user(just like Android system's toast). 8 |
9 |
10 | It will automatically disappear in some seconds :) 11 |
12 |
13 |
14 |
20 |
21 |
27 | Fork me on Github! 28 |
29 |A Vue component show tip to user(just like Android system\'s toast).
It will automatically disappear in some seconds :)
A Vue component show tip to user(just like Android system's toast).
It will automatically disappear in some seconds :)
A Vue component show tip to user(just like Android system's toast).
It will automatically disappear in some seconds :)
\n A Vue component show tip to user(just like Android system's toast).\n
\n
\n It will automatically disappear in some seconds :)\n
\n\n \n
\n \n
\n Fork me on Github!\n
\n