import { useMain } from '@cip/hooks/use-main' import './index.less' import { computed, onMounted } from 'vue' import { isObject } from '@cip/utils/util' import { useRouter } from 'vue-router' export default { props: { subPath: String, baseUrl: String, query: Object }, setup (props) { const { setCurrentTitle } = useMain() const router = useRouter() const src = computed(() => { return `${props.baseUrl}/${props.subPath}?` }) onMounted(() => { window.addEventListener('message', (e) => { const { data } = e if (isObject(data)) { let { type, fullPath } = data if (type === 'changeUrl') { fullPath = decodeURI(fullPath.substr(1)) if (fullPath !== props.subPath) { console.log(fullPath) router.push({ params: { subPath: fullPath } }) } } } }) }) return () => } }