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],
|
||||
async beforeRouteEnter(to, from, next) {
|
||||
useMainStore().createSubmittedOrder();
|
||||
console.log('submitted order created');
|
||||
// Call APIs
|
||||
const cmsContentPromise = fetchCmsContentForPage(to.query.issPage);
|
||||
|
||||
|
|
@ -128,6 +129,7 @@ export default {
|
|||
setup() {
|
||||
const mainStore = useMainStore();
|
||||
const { submittedOrder } = mainStore;
|
||||
console.log('setup called');
|
||||
return { mainStore, submittedOrder };
|
||||
},
|
||||
computed: {
|
||||
|
|
@ -289,7 +291,8 @@ export default {
|
|||
if (this.carrierUrl) {
|
||||
this.$refs.siteFooter.updateButtonText(`Go back to ${this.carrierName}`);
|
||||
}
|
||||
console.log(this.submittedOrder);
|
||||
console.log('mounted called');
|
||||
// console.log(this.submittedOrder);
|
||||
},
|
||||
methods: {
|
||||
arePagePrerequisitesValid() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue