1234567891011121314151617181920212223 |
- <template>
- <div>
- present {{presentId}}
- <gift-card/>
- </div>
- </template>
- <script>
- import GiftCard from "../components/giftCard";
- export default {
- name: "giftDetail",
- components: {GiftCard},
- computed: {
- presentId: function() {
- return this.$route.query.presentId
- }
- }
- }
- </script>
- <style scoped>
- </style>
|