logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

module ‘.vue‘ has no exported member ‘xxx‘

问题出现场景:在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

#android#百度#vue.js
Vue3安装依赖报错The engine “node“ is incompatible with this module

有时候运行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

#android#百度#vue.js
vue 数组添加数据

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

#android#百度#vue.js
module ‘.vue‘ has no exported member ‘xxx‘

问题出现场景:在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

#android#百度#vue.js
Vue数据更新但页面没有更新的多种情况

Vue数据更新但页面没有更新的多种情况1、Vue 无法检测实例被创建时不存在于 data 中的 变量原因:由于 Vue 会在初始化实例时对 data中的数据执行 getter/setter 转化,所以 变量必须在 data 对象上存在才能让 Vue 将它转换为响应式的。例如:new Vue({data:{},template: '<div>{{message}}</div>

#android#百度#vue.js
到底了