-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (41 loc) · 1.16 KB
/
index.html
File metadata and controls
41 lines (41 loc) · 1.16 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Exapmle product page</title>
</head>
<body>
<div class="product-wrapper">
<div class="gallery-wrapper">
<div class="gallery">
<div class="gallery-item"></div>
</div>
</div>
<div class="product-info">
<h1>This is an example product</h1>
<div class="price">$32.2</div>
<div id="app"></div>
</div>
</div>
<script type="text/javascript">
window.combinationEmbed = {
combinationId: 16,
product: {
id: 1,
name: 'This is an example product',
price: 100,
sku: 'abc123',
image: 'https://via.placeholder.com/500'
},
injectors: {
target: '#app',
preview: '.gallery',
price: '.price',
}
}
</script>
<script type="module" src="/src/main.ts"></script>
</body>
</html>