gpt4 book ai didi

javascript - 在构建 Vue.js 项目时使用 Gridsome 时出现 TypeError

转载 作者:行者123 更新时间:2023-12-03 06:45:31 25 4
gpt4 key购买 nike

我正在使用 Vue.jsGridsome为自己创建一个投资组合。但是,当我在站点中添加一个 JSON 文件以包含我的个人资料信息时,我遇到了一个问题。这就是我在我的 Index.vue 中导入文件的方式零件:

<script>
import Intro from "~/components/Intro.vue";
import profile from "~/data/profile.json";

export default {
components: {
Intro,
},
metaInfo: {
title: "Farzin Nasiri",
},
data: () => ({
profile
}),
};
</script>

这是我使用它的方式:
<Intro :personal="profile.personal" />

当我在开发中运行项目时(命令: gridsome develop),一切正常,数据被正确读取。但是,当我想构建项目时(命令: gridsome build ),它会在 dist 中创建构建文件文件夹,然后发生此错误:
Initializing plugins...
Load sources - 0.04s
Create GraphQL schema - 0.05s
Create pages and templates - 0.03s
Generate temporary code - 0.03s
Bootstrap finish - 0.67s
Compile assets - 13.28s
Execute GraphQL (6 queries) - 0.03s
Write out page data (6 files) - 0s
Could not generate HTML for "/":
TypeError: Cannot read property '__esModule' of undefined
at i (/home/farzin/MyProjects/portfolio.farzinnasiri.com/node_modules/vue-server-renderer/build.prod.js:1:68670)

这是我的项目结构(src 文件夹):
├── components
│ ├── Intro.vue
│ └── README.md
├── data
│ └── profile.json
├── favicon.png
├── layouts
│ ├── Default.vue
│ └── README.md
├── main.js
├── pages
│ ├── About.vue
│ ├── Index.vue
│ └── README.md
├── templates
│ ├── README.md
│ └── Work.vue
└── vendor
└── bootstrap.min.css

这是我的 package.json :
{
"name": "portfolio.farzinnasiri.com",
"version": "0.0.2",
"private": true,
"scripts": {
"build": "gridsome build",
"develop": "gridsome develop",
"explore": "gridsome explore"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-brands-svg-icons": "^5.13.0",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/vue-fontawesome": "^0.1.9",
"@gridsome/source-filesystem": "^0.6.2",
"@gridsome/transformer-remark": "^0.5.0",
"gridsome": "^0.7.0"
}
}

我真的不明白问题出在哪里,需要帮助来解决它。谢谢你的时间

最佳答案

Gridsome & SSR
来自 Gridsome docs :

gridsome build uses server-side rendering (SSR) to create a fully rendered page. If your Vue component does not support SSR ... it won't be rendered properly.

we suggest you to encapsulate the component inside <ClientOnly></ClientOnly> tags and import the library inside Vue's mounted() handler.


你得到的错误来自 vue-server-renderer ,来自 Vue 的服务器端 API。您需要执行上述说明。
~ 进口
此外,在不知道您如何在开发中启用将 JSON 作为模块(即 ~ )加载的情况下,这可能是一个问题,因为这在默认的 Vue CLI 环境中不起作用。
尝试删除 ~从所有进口:
import profile from "@/data/profile.json";

关于javascript - 在构建 Vue.js 项目时使用 Gridsome 时出现 TypeError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61028286/

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