nuxt window is not defined
报错如下 nuxt window is not defined解决方案1: 在nuxt.config.js 里面添加ssr:falseplugins: ['@/plugins/antd-ui',{src: '@/plugins/vue-map',ssr: false},{src: '@/plugins/seamless-scroll',ssr: false}],解决方案2: nuxt .
·
- 报错如下
nuxt window is not defined
- 解决方案1: 在nuxt.config.js 里面添加ssr:false
plugins: [
'@/plugins/antd-ui',
{
src: '@/plugins/vue-map',
ssr: false
},
{
src: '@/plugins/seamless-scroll',
ssr: false
}
],
<template>
<div>
<sidebar />
<no-ssr placeholder="Loading...">
<!-- 此组件仅在客户端呈现 -->
<comments />
</no-ssr>
</div>
</template>
更多推荐
已为社区贡献1条内容
所有评论(0)