Commit a57bb0addc45bba31485ec47fb04a49ac6904e21

Authored by Digvijay Singh
1 parent 49055248c7
Exists in master

route refresh

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
1 <template> 1 <template>
2 <div id="app"> 2 <div id="app">
3 <router-view /> 3 <router-view :key="$route.fullPath"/>
4 </div> 4 </div>
5 </template> 5 </template>
6 6
7 <script> 7 <script>
8 import "bootstrap/dist/css/bootstrap.min.css"; 8 import "bootstrap/dist/css/bootstrap.min.css";
9 export default { 9 export default {
10 name: "App", 10 name: "App",
11 data() { 11 data() {
12 return { 12 return {
13 }; 13 };
14 }, 14 },
15 mounted() { 15 mounted() {
16 16
17 } 17 }
18 }; 18 };
19 19
20 </script> 20 </script>
21 21
22 <style> 22 <style>
23 @import "assets/css/custom.css"; 23 @import "assets/css/custom.css";
24 @import "assets/css/media.css"; 24 @import "assets/css/media.css";
25 @import "assets/fonts/fonts.css"; 25 @import "assets/fonts/fonts.css";
26 26
27 #row { 27 #row {
28 display: -webkit-box; 28 display: -webkit-box;
29 display: flex; 29 display: flex;
30 -ms-flex-wrap: wrap; 30 -ms-flex-wrap: wrap;
31 flex-wrap: wrap; 31 flex-wrap: wrap;
32 } 32 }
33 </style> 33 </style>
34 34
35 35