-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml.html
More file actions
88 lines (88 loc) · 3.02 KB
/
Copy pathhtml.html
File metadata and controls
88 lines (88 loc) · 3.02 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
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
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sku Comparer</title>
<link rel="icon" href="arch.png">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="https://unpkg.com/vue@next" defer></script>
<script src="app.js" defer></script>
</head>
<body>
<section id="table" class="app">
<div class="nav">
<h1 v-if="doneComparing === true">
Finished.
</h1>
<h1 v-if="doneComparing === false">
Compare Skus
</h1>
</div>
<form class="container" v-if="doneComparing === false">
<p class="text-red" v-if="error === true">
You need to enter a list into both fields
</p>
<div class="container_textFields">
<label>
<h2>
List 1 Enter Text
</h2>
<textarea class="textfield" name="" id="" cols="30" rows="10" v-model="listInput"></textarea>
</label>
<label>
<h2>
List 2 Enter Text
</h2>
<textarea class="textfield" name="" id="" cols="30" rows="10" v-model="listInputTwo"></textarea>
</label>
</div>
<button
type="submit"
class="btn"
@click="compareList"
>
Compare List
</button>
</form>
<div class="container" v-if="doneComparing === true">
<div class="container_finished">
<div class="container_finished-blocks">
<h2>
List One Unique Sku
</h2>
<ul class="skulist">
<li v-for="item in listAUnique">
{{ item }}
</li>
</ul>
</div>
<div class="container_finished-blocks">
<h2>
Similar Skus
</h2>
<ul class="skulist">
<li v-for="item in intersection">
{{ item }}
</li>
</ul>
</div>
<div class="container_finished-blocks">
<h2>
List Two Unique Sku
</h2>
<ul class="skulist">
<li v-for="item in listBUnique">
{{ item }}
</li>
</ul>
</div>
</div>
<div class="container_btn">
<button @click="reload" class="btn">Reload</button>
</div>
</div>
</section>
</body>
</html>