首页 > 其他分享 >解决vue3脚手架 “Unresolved function or method defineProps()” 报错

解决vue3脚手架 “Unresolved function or method defineProps()” 报错

时间:2022-10-09 22:12:23浏览次数:68  
标签:function Unresolved 报错 vue3 method defineProps

用vue3+ts脚手架搭建项目的时候,组件会报错。

Unresolved function or method defineProps();

 

编辑器报红,最后发现是因为没有引入defineProps这个函数。

解决方法:

import {defineProps} from 'vue'

  引入defineProps方法就可以了。

 

 编辑器正常解析

 

标签:function,Unresolved,报错,vue3,method,defineProps
From: https://www.cnblogs.com/tbfboke/p/16773876.html

相关文章