如何将TypeScript与Nuxt.js一起使用`process.client`?

问题描述 投票:1回答:1
if (process.client) {
    // do something
}

获取错误Cannot find name 'process'. Do you need to install type definitions for node? Try npm i @types/node.

@types/node已安装。

[这似乎是一个经常发生的错误,其他人已经在Github上报告了该错误(即https://github.com/nuxt-community/typescript-template/issues/33)。到目前为止,似乎还没有人找到一种行之有效的解决方案。

有人有想法或设法解决了吗?

typescript vue.js nuxt.js
1个回答
0
投票

如果您使用的是Nuxt 2.10或更高版本,则可以查看最近的Nuxt official TypeScript support。我创建了一个新的2.11 Nuxt项目,按照他们的说明进行设置和处理。client对我来说效果很好。

© www.soinside.com 2019 - 2024. All rights reserved.