1***@qq.com
1***@qq.com
  • 发布:2023-12-07 16:46
  • 更新:2023-12-08 08:50
  • 阅读:203

抄官方代码编译报错?

分类:uni-app x
  type SwiperTabsItem = {  
    x : number,  
    w : number  
  }  

  type SwiperViewItem = {  
    title : string,  
  }

提示 Parsing error: Unexpected token SwiperTabsItem
编译报错: [plugin:uni:app-uvue] Parse error @:1:1

这种应该如何解决呢?

0 关注 分享

要回复文章请先登录注册

1***@qq.com

1***@qq.com (作者)

回复 喜欢技术的前端 :
重启解决了
2023-12-08 08:50
1***@qq.com

1***@qq.com (作者)

回复 HRK :
吐血,重启编辑器又能编译通过了
2023-12-08 08:49
HRK

HRK

type定义语法没问题啊,方便提供问题工程吗,你是不是用的VUE2,然后把这段代码写到export default之外了
2023-12-08 00:14
喜欢技术的前端

喜欢技术的前端

刚试了,可以用
```
type SwiperViewItem = {
title : string,
}
export default {
data() {
return {

}
},
methods: {
detail() {
let haha:SwiperViewItem = {
title:'haha'
}
console.log(haha)
}
}
}
```
2023-12-07 17:48