You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
returnjson.replace(/("(\\u[a-zA-Z0-9]{4}|\\[^u]|[^\\"])*"(\s*:)?|\b(true|false|null)\b|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?)/g, function (match) {
26
-
var cls ='number';
27
-
if (/^"/.test(match)) {
28
-
if (/:$/.test(match)) {
29
-
cls ='key';
30
-
} else {
31
-
cls ='string';
32
-
}
33
-
} elseif (/true|false/.test(match)) {
34
-
cls ='boolean';
35
-
} elseif (/null/.test(match)) {
36
-
cls ='null';
37
-
}
38
-
return'<span class="'+ cls +'">'+ match +'</span>';
39
-
});
40
-
}
41
-
}
42
-
},
38
+
filters: filters,
43
39
44
40
data() {
45
41
return {
46
-
model: {
47
-
id:1,
48
-
name:"John Doe",
49
-
type:"personal",
50
-
password:"J0hnD03!x4",
51
-
skills: [
52
-
"Javascript",
53
-
"VueJS"
54
-
],
55
-
email:"john.doe@gmail.com",
56
-
language:"en-GB",
57
-
age:35,
58
-
dob:348966000000,
59
-
rank:6,
60
-
address: {
61
-
country:"United Kingdom",
62
-
city:"London",
63
-
street:"SW1A 5 Parliament St",
64
-
geo: {
65
-
lat:51.501015,
66
-
lng:-0.126005
67
-
}
68
-
},
69
-
role:"admin",
70
-
created:1461834815864,
71
-
bio:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam non lacus porttitor, pellentesque odio sit amet, hendrerit felis. In turpis mauris, viverra a lacinia nec, fringilla ut nisi. Curabitur rutrum mattis risus, at dapibus nisl tempus et. Interdum et malesuada fames ac ante ipsum primis in faucibus. Phasellus eget elementum lorem. Pellentesque tempor nec ante ut molestie. Suspendisse imperdiet tempus hendrerit. Morbi a dignissim augue.",
0 commit comments