错误一:TypeError: Cannot read properties of undefined (reading 'replace')
错误二:[Vue warn]: inject() can only be used inside setup() or functional conponents.
解释:当我们使用内置 use开头的钩子函数时,不能进行嵌套去拿实例。如:文章来源:https://www.toymoban.com/news/detail-506219.html
const loginOut = async () => {
// 嵌套在函数内,会提示警告信息
const router = useRouter()
router.replace('/login')
}
解决:必须在 setup函数 第一层调用。文章来源地址https://www.toymoban.com/news/detail-506219.html
到了这里,关于TypeError: Cannot read properties of undefined (reading ‘replace‘)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!