25 lines
539 B
Vue
25 lines
539 B
Vue
<template>
|
|
<transition-group name="fade-transform" mode="out-in">
|
|
<inner-link
|
|
v-for="(item, index) in iframeViews"
|
|
:key="item.path"
|
|
:iframeId="'iframe' + index"
|
|
v-show="$route.path === item.path"
|
|
:src="item.meta.link"
|
|
></inner-link>
|
|
</transition-group>
|
|
</template>
|
|
|
|
<script>
|
|
import InnerLink from "../InnerLink/index"
|
|
|
|
export default {
|
|
components: { InnerLink },
|
|
computed: {
|
|
iframeViews() {
|
|
return this.$store.state.tagsView.iframeViews
|
|
}
|
|
}
|
|
}
|
|
</script>
|