1234567891011121314151617181920212223 |
- toastr.options = {
- "closeButton": true,
- "positionClass": "toast-top-center"
- }
- function showSuccessMessage(msg) {
- toastr.success(msg)
- }
- function showErrorMessage(msg) {
- toastr.error(msg)
- }
- function showWarningMessage(msg) {
- toastr.warning(msg)
- }
- new Vue({
- el: '#wrapper',
- data: {
-
- }
- })
|