-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
64 lines (64 loc) · 2.86 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
var app = new Vue({
el: '#app',
data: {
categoryFilter: true,
cardData: [
{
imgsrc: "https://i.ibb.co/Lx9PLPx/ph-logo-mark-white-space.jpg",
imgalt: "Pixl Haus logo",
name: "Pixl Haus",
category: "web design",
address: "702 E 3rd St, Duluth, MN 55805",
addresslink: "http://maps.google.com/?q=702 e 3rd st duluth mn 55805", website: "example.com",
websitelink: "https://www.google.com",
phone: "218-555-1234",
phonelink: "tel: 1-218-555-5555",
tag1: "freelancer",
tag2: "creative"
},
{
imgsrc: "https://i.ibb.co/fqs783v/dspclogo.png",
imgalt: "Duluth Screen Printing Co logo",
name: "Duluth Screen Printing Co.",
category: "printing",
address: "702 E 3rd St, Duluth, MN 55805",
addresslink: "http://maps.google.com/?q=702 e 3rd st duluth mn 55805",
website: "example.com",
websitelink: "https://www.google.com",
phone: "218-555-1234",
phonelink: "tel: 1-218-555-5555",
tag1: "affordable",
tag2: "eco-friendly"
},
{
imgsrc: "https://i.ibb.co/SDg1gcW/yourlogohere.jpg",
imgalt: "Your logo here",
name: "Business Name",
category: "undefined",
address: "702 E 3rd St, Duluth, MN 55805",
addresslink: "http://maps.google.com/?q=702 e 3rd st duluth mn 55805",
website: "example.com",
websitelink: "https://www.google.com",
phone: "218-555-1234",
phonelink: "tel: 1-218-555-5555",
tag1: "tag one",
tag2: "tag two"
}
,
{
imgsrc: "https://i.ibb.co/SDg1gcW/yourlogohere.jpg",
imgalt: "Your logo here",
name: "Business Name",
category: "undefined",
address: "702 E 3rd St, Duluth, MN 55805",
addresslink: "http://maps.google.com/?q=702 e 3rd st duluth mn 55805",
website: "example.com",
websitelink: "https://www.google.com",
phone: "218-555-1234",
phonelink: "tel: 1-218-555-5555",
tag1: "tag one",
tag2: "tag two"
}
]
}
})