index.vue 639 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <span
  3. class="my_shop_price my-shop-price bold"
  4. :data-orgp="value"
  5. :data-currency="currency"
  6. :data-original_amount="value">
  7. ¥{{ value }}
  8. </span>
  9. </template>
  10. <script>
  11. export default {
  12. name: 'unit-shop-price',
  13. props: {
  14. // 价格
  15. value: {
  16. default: '0.00',
  17. required: true
  18. },
  19. // 币种,默认USD美元
  20. currency: {
  21. default: ''
  22. },
  23. // 配置项
  24. config: {
  25. type: Object,
  26. default () {
  27. return {};
  28. }
  29. }
  30. }
  31. };
  32. </script>