-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.vue
78 lines (65 loc) · 1.57 KB
/
App.vue
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
<script setup lang="ts">
import { ref, type Ref } from 'vue';
import MessageComponent from './components/MessageComponent.vue';
const title: string = "Vue app";
const LS: string = "jsFrameworkComparison-vue-messages";
const count: Ref<number> = ref(0);
setInterval(() => {
count.value++;
console.log('new value for count: ' + count.value);
}, 1000);
const list: Ref<Message[]> = ref([]);
list.value = JSON.parse(window.localStorage.getItem(LS) ?? "[]") as Message[];
function sendMessage(event: any) {
list.value.push({ message: event.target.value, date: new Date() });
window.localStorage.setItem(LS, JSON.stringify(list.value));
}
function emptyList() {
list.value = [];
window.localStorage.setItem(LS, "[]");
}
type Message = {
message: string;
date: Date;
};
</script>
<template>
<div class="App">
<header class="header">
<h1>{{ title }}</h1>
<img src="./assets/logo.svg" class="logo" alt="Vue logo" />
<span>{{ count }}</span>
</header>
<div class="content">
<input type="text" @change="sendMessage" />
<MessageComponent v-for="elem in list" :message="elem" />
<button @click="emptyList">Empty</button>
</div>
</div>
</template>
<style scoped>
.App {
width: 100%;
}
.header {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #ccc;
padding: 12px;
width: 100%;
}
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 12px;
width: 100%;
}
.logo {
width: 72px;
height: 72px;
}
</style>