goods-detail.vue 225 B

12345678910111213141516171819
  1. <template>
  2. <div>{{ goodsId }}</div>
  3. </template>
  4. <script>
  5. export default {
  6. name: 'goods-detail',
  7. props: {
  8. goodsId: {
  9. type: String,
  10. default: ''
  11. }
  12. }
  13. }
  14. </script>
  15. <style lang="scss" scoped>
  16. </style>