mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-28 11:00:39 +00:00
- custom route for PlanPricingTables.vue
- removed passport error in signin form
This commit is contained in:
@@ -39,6 +39,9 @@
|
||||
HardDriveIcon,
|
||||
ButtonBase,
|
||||
},
|
||||
props: [
|
||||
'customRoute'
|
||||
],
|
||||
data() {
|
||||
return {
|
||||
plans: undefined,
|
||||
@@ -50,7 +53,10 @@
|
||||
methods: {
|
||||
selectPlan(plan) {
|
||||
this.$emit('selected-plan', plan)
|
||||
this.$router.push({name: 'UpgradeBilling'})
|
||||
|
||||
let route = this.customRoute ? this.customRoute : 'UpgradeBilling'
|
||||
|
||||
this.$router.push({name: route})
|
||||
}
|
||||
},
|
||||
created() {
|
||||
|
||||
Reference in New Issue
Block a user