FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
assets
/
js
/
backend
/
mixins
Edit File: notifyMixin.js
export default { methods: { notify (title, message, type, customClass, duration) { if (typeof customClass === 'undefined') { customClass = '' } setTimeout(() => { let data = { customClass: customClass, title: title, message: message, type: type, offset: 50 } if (typeof duration !== 'undefined') { data['duration'] = duration } this.$notify(data) }, 700) } } }
Save
Back