首页 前端知识 【ts】文件“xx/src/views/HomeView.vue.ts”不是模块。ts(2306)

【ts】文件“xx/src/views/HomeView.vue.ts”不是模块。ts(2306)

2024-06-07 23:06:15 前端知识 前端哥 1000 280 我要收藏

最近用ts重构代码,一个菜鸟老是出现各种红线报错。
在这里插入图片描述
出现这个问题一直以为是eslint的原因,试了很多方法没有用。

后来想起来可能是没创建ts,在vue页面中加入了ts类型。

<template>
  <div class="home"></div>
</template>

<script lang="ts">
import { Component, Prop, Vue } from 'vue-property-decorator';
@Component
export default class HomeView extends Vue {
}
</script>

<style lang="less" scoped></style>

已成功
在这里插入图片描述

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

echarts 鼠标划过显示信息

2024-06-14 23:06:40

echarts@5 动画失效

2024-06-14 23:06:39

vue3 聊天机器人 聊天界面

2024-06-14 23:06:06

Vue - Vue3 集成编辑器功能

2024-06-14 23:06:54

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