k-line.vue 523 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <iframe
  3. :src="`https://biking.okenx.com/biking/kline.html?legal_id=${currencyVal.legal_id}&currency_id=${currencyVal.currency_id}&symbol=${currencyVal.currency_name}/${currencyVal.legal_name}`"
  4. frameborder="0"></iframe>
  5. </template>
  6. <script>
  7. import {
  8. mapGetters
  9. } from 'vuex'
  10. export default {
  11. name: "k-line",
  12. data() {
  13. return {
  14. };
  15. },
  16. computed: {
  17. ...mapGetters([
  18. 'currencyVal'
  19. ]),
  20. },
  21. }
  22. </script>
  23. <style lang="scss" scoped>
  24. iframe {
  25. width: 100%;
  26. height: 100%;
  27. }
  28. </style>