提交 c8bb067d 编写于 作者: fxy060608's avatar fxy060608

chore: build

上级 511562fa
...@@ -123,7 +123,8 @@ function useWebViewSize( ...@@ -123,7 +123,8 @@ function useWebViewSize(
) { ) {
const _resize = () => { const _resize = () => {
if (fullscreen) { if (fullscreen) {
const { top, left, width, height } = rootRef.value!.getBoundingClientRect() const { top, left, width, height } =
rootRef.value!.getBoundingClientRect()
updateElementStyle(iframeRef.value!, { updateElementStyle(iframeRef.value!, {
position: 'absolute', position: 'absolute',
......
...@@ -4850,8 +4850,12 @@ function findComponentPublicInstance(mpComponents, id) { ...@@ -4850,8 +4850,12 @@ function findComponentPublicInstance(mpComponents, id) {
const mpInstance = mpComponents.find(com => com && (com.properties || com.props).uI === id); const mpInstance = mpComponents.find(com => com && (com.properties || com.props).uI === id);
if (mpInstance) { if (mpInstance) {
const vm = mpInstance.$vm; const vm = mpInstance.$vm;
if (vm) {
return getExposeProxy(vm.$) || vm; return getExposeProxy(vm.$) || vm;
} }
// 可能是原生组件
return mpInstance;
}
return null; return null;
} }
function setTemplateRef({ r, f }, refValue, setupState) { function setTemplateRef({ r, f }, refValue, setupState) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册