最近用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>
已成功