123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <template>
- <iframe class="iframe-k" :src="`https://kline.cuwiee.com/local.html?tokenName=${currencyVal.currency_name}`"
- frameborder="0"></iframe>
-
- </template>
- <script>
- import {
- mapGetters
- } from 'vuex'
- export default {
- props: {
- // kWidth: {
- // type: Number,
- // default: 0
- // },
- // kHeight: {
- // type: Number,
- // default: 0
- // },
- // :k-width="kWidth" :k-height="kHeight"
- height: {
- type: String,
- default: '600rpx'
- }
- },
- computed: {
- ...mapGetters([
- 'currencyVal'
- ])
- },
- data() {
- return {
-
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .iframe-k{
- width: 100%;
- height: 100%;
- }
- </style>
|