index.js 318 B

1234567891011121314151617181920212223
  1. toastr.options = {
  2. "closeButton": true,
  3. "positionClass": "toast-top-center"
  4. }
  5. function showSuccessMessage(msg) {
  6. toastr.success(msg)
  7. }
  8. function showErrorMessage(msg) {
  9. toastr.error(msg)
  10. }
  11. function showWarningMessage(msg) {
  12. toastr.warning(msg)
  13. }
  14. new Vue({
  15. el: '#wrapper',
  16. data: {
  17. }
  18. })