App.vue
1.84 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
<template>
<v-app>
<v-app-bar app color="#ffffff" elevation="1" hide-on-scroll>
<v-icon size="35" class="mr-1" color="grey700">mdi-youtube</v-icon>
<div style="color: #343a40; font-size: 20px; font-weight: 500;">Youtube Auto Tagger</div>
<v-spacer></v-spacer>
<v-tooltip bottom>
<template v-slot:activator="{ on }">
<v-btn icon v-on="on" color="grey700" @click="clickInfo=true">
<v-icon size="30">mdi-information</v-icon>
</v-btn>
</template>
<span>Service Info</span>
</v-tooltip>
</v-app-bar>
<v-dialog v-model="clickInfo" max-width="600" class="pa-2">
<v-card elevation="0" outlined class="pa-4">
<v-row justify="center" class="mx-0 mb-8 mt-2">
<v-icon color="lightblue">mdi-power-on</v-icon>
<div
style="text-align: center; font-size: 22px; font-weight: 400; color: #343a40;"
>Information of This Service</div>
<v-icon color="lightblue">mdi-power-on</v-icon>
</v-row>
<div>Used Opensource</div>
</v-card>
</v-dialog>
<v-content>
<router-view />
</v-content>
<v-footer>
<v-row justify="center">
<v-avatar size="25" tile style="border-radius: 4px">
<v-img src="./assets/logo.png"></v-img>
</v-avatar>
<a href="http://khuhub.khu.ac.kr/2020-1-capstone-design1/PKH_Project1">
<div
style="margin-left: 4px; font-size: 16px; color: #5a5a5a; font-weight: 400"
>Profit-Hunter</div>
</a>
</v-row>
</v-footer>
</v-app>
</template>
<script>
export default {
name: 'App',
data() {
return {
clickInfo: false,
};
},
};
</script>
<style lang="scss">
a:hover {
text-decoration: none;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
</style>