gpt4 book ai didi

vue.js - 如何删除 nuxt 项目中的 window.__nuxt__,它对我来说太大了

转载 作者:行者123 更新时间:2023-12-05 01:39:04 33 4
gpt4 key购买 nike

当我使用nuxt开发我的项目时,我发现了一些问题。

window.__NUXT__=(function(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,_,$,aa, ..... code was too larger

我可以删除它还是使用js文件替换它?

最佳答案

我找到了一个比较完美的解决方案。我将在这里与您分享。也可以看看我用NUXT开发的网站Sample Website

关键是hook函数vue-renderer:ssr:context,你可以设置context.nuxt = null来移除任何window._NUXT_ 中的数据。

但是效果不是很好,必须在window.nuxt中添加serverRenderroutePath

// nuxt.config.js
{
...,
hooks: {
'vue-renderer:ssr:context'(context) {
const routePath = JSON.stringify(context.nuxt.routePath);
context.nuxt = {serverRendered: true, routePath};
}
}
}

您可以在 my site 查看结果

关于vue.js - 如何删除 nuxt 项目中的 window.__nuxt__,它对我来说太大了,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59082751/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com