Skip to Content

JavaScript File

URL: http://sexteller.com/js/services/vuePopup.js?v=142
HTTP Status: 200 OK
MIME Type: application/javascript
Last Modified: Thu, 24 Jun 2021 18:32:32 GMT
Download Time: Less than a second
Cookies: None
Size: 1 KB
HTTP Headers:  10 headers
Links In:  8 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);