服务器端渲染的 nuxt-leaflet 问题(window 未定义)
nuxt-leaflet problem with server side rendering (window is not defined)
我一直在做一个 ssr nuxt 项目 n 想添加 nuxt-leaflet 但显然 nuxt-leaflet 模块中有一个 window 引用导致(window 未定义)错误服务器端渲染
这是因为 nuxt-leaflet
使用 window 对象,你应该在 client-side
上渲染你的组件
<client-side>
<Component/>
</client-side>
我一直在做一个 ssr nuxt 项目 n 想添加 nuxt-leaflet 但显然 nuxt-leaflet 模块中有一个 window 引用导致(window 未定义)错误服务器端渲染
这是因为 nuxt-leaflet
使用 window 对象,你应该在 client-side
<client-side>
<Component/>
</client-side>