App.vue
1.26 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>
<div id="app">
<head-nav></head-nav>
<transition >
<router-view></router-view>
</transition>
</div>
</template>
<script>
import Layout from './components/Layout/';
export default {
name: 'app',
components: Layout,
methods:{
},
mounted(){
},
watch:{
$route(to,from){
// console.log(to);
if (!to.matched.length) {
this.$router.push('/404');
}
}
}
}
</script>
<style scoped lang='less'>
.bounce-enter-active {
animation: bounce-in .5s;
-webkit-animation:bounce-in .5s;
}
.bounce-leave-active {
animation: bounce-out .2s;
-webkit-animation: bounce-out .2s;
}
@keyframes bounce-in {
0% {
transform: scale(0);
}
50% {
transform: scale(1.05);
}
100% {
transform: scale(1);
}
}
@keyframes bounce-out {
0% {
transform: scale(1);
}
50% {
transform: scale(0.95);
}
100% {
transform: scale(0);
}
}
</style>