Skip to Content

JavaScript File

URL: http://xlib.info/js/services/vuePopup.js?v=140
HTTP Status: 200 OK
MIME Type: application/javascript
Last Modified: Thu, 08 Jul 2021 05:26:35 GMT
Download Time: Less than a second
Cookies: None
Size: 1 KB
HTTP Headers:  10 headers
Links In:  6 pages
Links Out:  0 links
Images:  0 images
CSS:  0 files
JavaScript:  0 files
OK Issues: No issues found

1window.vPopup = new Vue({

2 el: '#vPopup',

3 delimiters: ['*{', '}

4*'],

5 data() {

6 return {

7 message: '',

8 type: '',

9 }

10

11 }

12,

13 methods: {

14 msg(message, type, duration) {

15 this.type = type;

16 this.message = message;

17 setTimeout( () => {

18 this.message = '';

19 }

20, duration);

21 }

22,

23 }

24

25}

26);