首页 前端知识 Vue3 Vite TypeScript 中 TS 文件export type类型报错

Vue3 Vite TypeScript 中 TS 文件export type类型报错

2024-05-26 00:05:25 前端知识 前端哥 176 286 我要收藏

使用的环境为Vite+Vue3+TypeScript。

报错信息如下:

Uncaught SyntaxError: The requested module 'xx.d.ts' does not provide an export named 'CustomRoute'

定义的对应的ts文件如下:

import { RouteRecordRaw } from "vue-router";

export type CustomRoute = RouteRecordRaw & {
  hidden?: boolean;
};

解决方法:
在 import 的时候将 import {xxx} from 'xxx'  改成 import type {xxx} from 'xxx'

转载请注明出处或者链接地址:https://www.qianduange.cn//article/9530.html
标签
评论
发布的文章

html5怎么实现语音搜索

2024-06-01 10:06:32

HTML5

2024-02-27 11:02:15

HTML - 头部元素

2024-06-01 10:06:06

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!