HolyKnightIX 6 mesi fa
parent
commit
34cb56f870
1 ha cambiato i file con 13 aggiunte e 0 eliminazioni
  1. +13
    -0
      example/page/index.vue

+ 13
- 0
example/page/index.vue Vedi File

@@ -397,6 +397,19 @@ export default {
if (tenantId) this.tenantId = tenantId
this.getData()
},
beforeCreate() {
const tenantId = this.$route.query.tenantId
const templateId = this.$route.query.templateId
if (templateId) {
this.$router.push({
path: "/designer",
query: {
tenantId,
templateId
}
})
}
}
}
</script>
<style lang="scss" scoped>


Caricamento…
Annulla
Salva