【Vue】VueCli3 + Vue + typescript 挖坑记
Vue + typescript 挖坑记
VueCli3.0生成Vue+ts的项目组件,中间遇到了一些让我直接放弃结合ts的坑,还是等Vue3.0的发布吧,到那个时候肯定结合得会更好。1 How to fix TSLint: " should be ' (quotemark) while doing organize imports in code editors?
In User Preferences set the following.
"tslint.autoFixOnSave": true
2 tslint Missing semicolon (semicolon)
分析:在vuetur的github>issue中有讲,vue-tslint的代码检查不太好,强制要求每个vue单文件组件里必须要有以下代码
<script lang="ts"> </script>
3 App.vue' is not a module.
分析:弄完第二个问题后,cli紧接着就报了这个错误。想了解的话,请戳vuecli_ts > Github上的这个Issue,下面给了一种临时性的解决方案(真的挺丑的),真正的解决还是得等vue3.0的正式发布。
解决方法:// @ts-ignore before each import '*.vue' could be a temporary solution.
// @ts-ignore import HelloWorld from '@/components/HelloWorld/HelloWorld.vue';
相关推荐
QiaoranC 2020-09-25
yuzhu 2020-11-16
85477104 2020-11-17
KANSYOUKYOU 2020-11-16
sjcheck 2020-11-03
怪我瞎 2020-10-28
源码zanqunet 2020-10-28
gloria0 2020-10-26
王军强 2020-10-21
学习web前端 2020-09-28
anchongnanzi 2020-09-21
安卓猴 2020-09-12
Macuroon 2020-09-11
kiven 2020-09-11
LittleCoder 2020-09-11
Cheetahcubs 2020-09-13
小焊猪web前端 2020-09-10
颤抖吧腿子 2020-09-04
softwear 2020-08-21