giftDetail.vue 409 B

1234567891011121314151617181920212223
  1. <template>
  2. <div>
  3. present {{presentId}}
  4. <gift-card/>
  5. </div>
  6. </template>
  7. <script>
  8. import GiftCard from "../components/giftCard";
  9. export default {
  10. name: "giftDetail",
  11. components: {GiftCard},
  12. computed: {
  13. presentId: function() {
  14. return this.$route.query.presentId
  15. }
  16. }
  17. }
  18. </script>
  19. <style scoped>
  20. </style>