简介
该用户还未填写简介
擅长的技术栈
可提供的服务
暂无可提供的服务
问题出现场景:在vue3+ts学习过程中遇到报这个错bug复盘在启动写vue项目后,新增一个vue,这个script标签中未添加lang=ts 修改script lang=ts后,发现无论怎么修改ts都会报这个错,Module ‘".vue"’ has no exported member ‘xxx’. Did you mean to use 'import xxx from ".vue"’ in
有时候运行Vue3项目,安装依赖会报各种各样的错误如:info "fsevents@2.3.2" is an optional dependency and failed compatibility check. Excluding it from installation.error vue-types@4.0.3: The engine "node" is incompatible with
vue 数据添加分为三种方法:1.unshift(),2.push(),3.splice()<template><div><ul><li v-for="(time,index) of listTable" :key="index" @click="copyNew(time,index)">{{time.id}}{{time.name1}}{{time
问题出现场景:在vue3+ts学习过程中遇到报这个错bug复盘在启动写vue项目后,新增一个vue,这个script标签中未添加lang=ts 修改script lang=ts后,发现无论怎么修改ts都会报这个错,Module ‘".vue"’ has no exported member ‘xxx’. Did you mean to use 'import xxx from ".vue"’ in
Vue数据更新但页面没有更新的多种情况1、Vue 无法检测实例被创建时不存在于 data 中的 变量原因:由于 Vue 会在初始化实例时对 data中的数据执行 getter/setter 转化,所以 变量必须在 data 对象上存在才能让 Vue 将它转换为响应式的。例如:new Vue({data:{},template: '<div>{{message}}</div>