Rap 原分销系统代码Web
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

533298b8381f046bb73e918dc6db1a7a9364d570.svn-base 249B

пре 5 месеци
123456789101112
  1. <script>
  2. export default {
  3. created() {
  4. const { params, query } = this.$route
  5. const { path } = params
  6. this.$router.replace({ path: '/' + path, query })
  7. },
  8. render: function(h) {
  9. return h() // avoid warning message
  10. }
  11. }
  12. </script>