diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2024-07-13 02:58:03 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2024-07-13 02:58:03 +0530 |
commit | 3d6d0a116b2c4629ebbce775eeaf86950c498393 (patch) | |
tree | 9e84fced50c542577fccfbe11ad958462b0ee6e0 /src/components/PrintPreviewFooter.vue | |
parent | 58ecb36f6a98114604952d9dbe78cb99fb159351 (diff) |
setting ref as new User() to not cause errors while rendering before data is received
Diffstat (limited to 'src/components/PrintPreviewFooter.vue')
-rw-r--r-- | src/components/PrintPreviewFooter.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/PrintPreviewFooter.vue b/src/components/PrintPreviewFooter.vue index 3d1dd4c..670b82d 100644 --- a/src/components/PrintPreviewFooter.vue +++ b/src/components/PrintPreviewFooter.vue @@ -7,7 +7,7 @@ import User from "./../classes/user.js" import axios from "axios" - const user = ref() + const user = ref(new User()) // temporarily using this // TODO: don't call api from PrintPreview |