-
Notifications
You must be signed in to change notification settings - Fork 2
/
dummy-data.js
84 lines (83 loc) · 1.94 KB
/
dummy-data.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
module.exports = {
shop: {
name: "longvb",
money_format: "d",
money_with_currency_format: "d",
currency: "VND",
},
products: {
product: {
add_to_cart: "Add to Cart",
},
},
routes: {
root_url: "/",
search_url: "/search",
cart_url: "/cart",
account_url: "/account",
all_products_collection_url: "/collections"
},
linklists: {
"main-menu": {
links: [
{
url: "/kk",
title: "kk",
active: true,
},
{
url: "/cc",
title: "cc",
},
{
url: "/haha",
title: "haha",
},
{
url: "/lol",
title: "lol",
},
],
},
footer: {
links: [
{
url: "/kk",
title: "kk",
active: true,
},
{
url: "/cc",
title: "cc",
},
{
url: "/haha",
title: "haha",
},
{
url: "/lol",
title: "lol",
},
],
},
},
cart: {
item_count: 3,
items: [
{
"key": 1,
"product": {
"id": "id-product",
},
title: "san pham 1",
properties: [],
quantity: 4,
original_price: 6000,
final_price: 4000,
original_line_price: 2000,
final_line_price: 5000
}
],
total_price: 10000
}
};