{"id":28054,"date":"2024-11-24T14:49:09","date_gmt":"2024-11-24T06:49:09","guid":{"rendered":"https:\/\/fwq.ai\/blog\/28054\/"},"modified":"2024-11-24T14:49:09","modified_gmt":"2024-11-24T06:49:09","slug":"vue3-%e4%b8%ad%ef%bc%8c%e4%b8%ba%e4%bb%80%e4%b9%88-%e7%bb%84%e4%bb%b6%e5%86%85%e7%9a%84-window-onload-%e6%96%b9%e6%b3%95%e4%b8%8d%e6%89%a7%e8%a1%8c%ef%bc%9f","status":"publish","type":"post","link":"https:\/\/fwq.ai\/blog\/28054\/","title":{"rendered":"Vue3 \u4e2d\uff0c\u4e3a\u4ec0\u4e48&#8220; \u7ec4\u4ef6\u5185\u7684 `window.onload` \u65b9\u6cd5\u4e0d\u6267\u884c\uff1f"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/img.php.cn\/upload\/article\/001\/246\/273\/173138670351954.jpg\" class=\"aligncenter\" title=\"Vue3 \u4e2d\uff0c\u4e3a\u4ec0\u4e48&#8220; \u7ec4\u4ef6\u5185\u7684 `window.onload` \u65b9\u6cd5\u4e0d\u6267\u884c\uff1f\u63d2\u56fe\" alt=\"Vue3 \u4e2d\uff0c\u4e3a\u4ec0\u4e48&#8220; \u7ec4\u4ef6\u5185\u7684 `window.onload` \u65b9\u6cd5\u4e0d\u6267\u884c\uff1f\u63d2\u56fe\" \/><\/p>\n<p><strong>3 onload \u65b9\u6cd5\u4e0d\u6267\u884c<\/strong><\/p>\n<p>\u5728 Vue3 \u4e2d\uff0c<\/p>\n<p><strong>\u89e3\u51b3\u65b9\u6848<\/strong><\/p>\n<p>\u8981\u89e3\u51b3\u8fd9\u4e2a\u95ee\u9898\uff0c\u8bf7\u5c06 onload \u65b9\u6cd5\u653e\u7f6e\u5728\u5165\u53e3\u6587\u4ef6 mn.js \u4e2d\u3002\u8fd9\u6837\u505a\u53ef\u4ee5\u786e\u4fdd\u5728\u9875\u9762\u52a0\u8f7d\u65f6\u6267\u884c\u8be5\u65b9\u6cd5\uff0c\u4ee5\u4fbf\u60a8\u53ef\u4ee5\u5173\u95ed\u52a0\u8f7d\u6307\u793a\u5668\u3002<\/p>\n<p><strong>\u4ee3\u7801\u793a\u4f8b<\/strong><\/p>\n<p><span>\u7acb\u5373\u5b66\u4e60<\/span>\u201c\u201d\uff1b<\/p>\n<pre>\/\/ main.js\nwindow.onload = () =&gt; {\n  console.log('loaded');\n}\n\n\/\/ \u7ec4\u4ef6\u4e2d\nimport { onMounted } from 'vue'\nonMounted(() =&gt; {\n  console.log('mounted');\n  nextTick(() =&gt; {\n    console.log('nextTick');\n  })\n})<\/pre>\n<p> \u767b\u5f55\u540e\u590d\u5236 <\/p>\n<p>\u901a\u8fc7\u6b64\u66f4\u6539\uff0cloaded \u6d88\u606f\u5c06\u5728\u9875\u9762\u52a0\u8f7d\u540e\u7acb\u5373\u6253\u5370\uff0c\u65e0\u8bba\u80cc\u666f\u56fe\u662f\u5426\u5b8c\u6210\u6e32\u67d3\u3002<\/p>\n<p>\u4ee5\u4e0a\u5c31\u662fVue3 \u4e2d\uff0c&#8220; \u7ec4\u4ef6\u5185\u7684 `window.onload` \u65b9\u6cd5\u4e0d\u6267\u884c\uff1f\u7684\u8be6\u7ec6\u5185\u5bb9\uff0c\u66f4\u591a\u8bf7\u5173\u6ce8\u7c73\u4e91\u5176\u5b83\u76f8\u5173\u6587\u7ae0\uff01<\/p>\n","protected":false},"excerpt":{"rendered":"<p>3 onload \u65b9\u6cd5\u4e0d\u6267\u884c \u5728 Vue3 \u4e2d\uff0c \u89e3\u51b3\u65b9\u6848 \u8981\u89e3\u51b3\u8fd9\u4e2a\u95ee\u9898\uff0c\u8bf7\u5c06 onload \u65b9\u6cd5\u653e\u7f6e\u5728\u5165\u53e3\u6587\u4ef6 mn.js \u4e2d\u3002\u8fd9\u6837\u505a\u53ef\u4ee5\u786e\u4fdd\u5728\u9875\u9762\u52a0\u8f7d\u65f6\u6267\u884c\u8be5\u65b9\u6cd5\uff0c\u4ee5\u4fbf\u60a8\u53ef\u4ee5\u5173\u95ed\u52a0\u8f7d\u6307\u793a\u5668\u3002 \u4ee3\u7801\u793a\u4f8b \u7acb\u5373\u5b66\u4e60\u201c\u201d\uff1b \/\/ main.js window.onload = () =&gt; { console.log(&#8216;loaded&#8217;); } \/\/ \u7ec4\u4ef6\u4e2d import { onMounted } from &#8216;vue&#8217; onMounted(() =&gt; { console.log(&#8216;mounted&#8217;); nextTick(() =&gt; { console.log(&#8216;nextTick&#8217;); }) }) \u767b\u5f55\u540e\u590d\u5236 \u901a\u8fc7\u6b64\u66f4\u6539\uff0cloaded \u6d88\u606f\u5c06\u5728\u9875\u9762\u52a0\u8f7d\u540e\u7acb\u5373\u6253\u5370\uff0c\u65e0\u8bba\u80cc\u666f\u56fe\u662f\u5426\u5b8c\u6210\u6e32\u67d3\u3002 \u4ee5\u4e0a\u5c31\u662fVue3 \u4e2d\uff0c&#8220; \u7ec4\u4ef6\u5185\u7684 `window.onload` \u65b9\u6cd5\u4e0d\u6267\u884c\uff1f\u7684\u8be6\u7ec6\u5185\u5bb9\uff0c\u66f4\u591a\u8bf7\u5173\u6ce8\u7c73\u4e91\u5176\u5b83\u76f8\u5173\u6587\u7ae0\uff01<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[16],"tags":[],"class_list":["post-28054","post","type-post","status-publish","format-standard","hentry","category-16"],"_links":{"self":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts\/28054","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/comments?post=28054"}],"version-history":[{"count":0,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts\/28054\/revisions"}],"wp:attachment":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/media?parent=28054"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/categories?post=28054"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/tags?post=28054"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}