项目框架版本如下:
vite4.1.4+vue3.2.45+ts版+typedoc0.23.25。
历史:从vue2项目迁移到vue3的项目。
目录结构
package.json:
"scripts": {
"doc": "typedoc --options ./typedoc.json",
}
typedoc.json:
{
"entryPoints": ["src/main.ts"],
"exclude": ["**/*+.vue"],
"includes": "src/*.ts",
"out": "docs",
"includeVersion": true,
"disableSources": true
}
edit.vue报错文件
<template>
<div class="comTc">
.....
</div>
</template>
<script lang="ts">
import edit from './edit';
export default edit;
</script>
<style lang="scss" scoped>
@import "./edit.scss";
</style>
edit.ts
export default {
data() {
return {
userinfo: '', // 用户信息 - 从缓存中取
// 行业分类
industryData: [],
// 能耗水平
consumptionData: [],
// 表单逻辑+内容
form: {
....
}
};
},
props: {
info: Object // 待编辑的信息对象
},
created() {
this.init();
},
methods: {
.....
}
};
执行npm run doc
全是下图这种问题,怎么解决?
都是ts里面引得组件。
此项目,dev/build都没有问题。使用typedoc生成文档的时候就报错。