pengyh 1 ano atrás
pai
commit
f869211e76
1 arquivos alterados com 1 adições e 6 exclusões
  1. 1 6
      src/App.vue

+ 1 - 6
src/App.vue

@@ -1,6 +1,6 @@
 <template>
   <div id="app">
-    <router-view :key="key"/>
+    <router-view/>
   </div>
 </template>
 
@@ -10,11 +10,6 @@ export default {
   data() {
     return {}
   },
-	 computed:{
-	  key(){
-	    return this.$route.name !== undefined? this.$route.name + +new Date(): this.$route + +new Date()
-	  }
-	},
   methods: {}
 }
 </script>