Rap 原分销系统代码Web
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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>