console logging
This commit is contained in:
parent
9f2c7dbddf
commit
30efde8d39
1 changed files with 4 additions and 1 deletions
|
|
@ -107,6 +107,7 @@ export default {
|
||||||
mixins: [BaseFormMixin],
|
mixins: [BaseFormMixin],
|
||||||
async beforeRouteEnter(to, from, next) {
|
async beforeRouteEnter(to, from, next) {
|
||||||
useMainStore().createSubmittedOrder();
|
useMainStore().createSubmittedOrder();
|
||||||
|
console.log('submitted order created');
|
||||||
// Call APIs
|
// Call APIs
|
||||||
const cmsContentPromise = fetchCmsContentForPage(to.query.issPage);
|
const cmsContentPromise = fetchCmsContentForPage(to.query.issPage);
|
||||||
|
|
||||||
|
|
@ -128,6 +129,7 @@ export default {
|
||||||
setup() {
|
setup() {
|
||||||
const mainStore = useMainStore();
|
const mainStore = useMainStore();
|
||||||
const { submittedOrder } = mainStore;
|
const { submittedOrder } = mainStore;
|
||||||
|
console.log('setup called');
|
||||||
return { mainStore, submittedOrder };
|
return { mainStore, submittedOrder };
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
|
@ -289,7 +291,8 @@ export default {
|
||||||
if (this.carrierUrl) {
|
if (this.carrierUrl) {
|
||||||
this.$refs.siteFooter.updateButtonText(`Go back to ${this.carrierName}`);
|
this.$refs.siteFooter.updateButtonText(`Go back to ${this.carrierName}`);
|
||||||
}
|
}
|
||||||
console.log(this.submittedOrder);
|
console.log('mounted called');
|
||||||
|
// console.log(this.submittedOrder);
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
arePagePrerequisitesValid() {
|
arePagePrerequisitesValid() {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue