redirect.vue 298 B

1234567891011121314
  1. <script>
  2. export default {
  3. created() {
  4. console.log("=======redirect=====")
  5. // const { params, query } = this.$route
  6. // const { path } = params
  7. // this.$router.replace({ path: '/' + path, query })
  8. },
  9. render: function(h) {
  10. return h() // avoid warning message
  11. }
  12. }
  13. </script>