-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathApp.vue
More file actions
executable file
·64 lines (61 loc) · 1.25 KB
/
App.vue
File metadata and controls
executable file
·64 lines (61 loc) · 1.25 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
<template>
<div id="app">
<footer-component ref="footer"></footer-component>
<keep-alive>
<transition name="bounce" v-on:before-enter="beforeEnter">
<router-view ref="content"></router-view>
</transition>
</keep-alive>
<head-component ref="head"></head-component>
</div>
</div>
</template>
<script>
import FooterComponent from './components/footer/footer'
import HeadComponent from './components/head/head'
export default {
name: 'app',
methods: {
beforeEnter(el){
// console.log(el)
}
},
components: {
FooterComponent,
HeadComponent
}
}
</script>
<style scoped>
#content-component{
margin: 55px 0 50px 0;
}
.bounce-enter-active {
animation: bounce-in .5s;
}
.bounce-leave-active {
animation: bounce-out .5s;
}
@keyframes bounce-in {
0% {
transform: scale(0);
}
50% {
transform: scale(1.5);
}
100% {
transform: scale(1);
}
}
@keyframes bounce-out {
0% {
transform: scale(1);
}
50% {
transform: scale(1.5);
}
100% {
transform: scale(0);
}
}
</style>