【vue3】开发中遇到的问题

vue3 TS

无法识别vue对象this的属性,报vue ts this报Property ‘x‘ does not exist on type
解决方法1:

// tsconfig.json
{
  Strict:false
}

解决方法2:

this.name = 'cq'
// 改成下面的写法
(this as any).name = 'cq'

vue-router

  1. route定义中,如何设置可选的params
    解决方法:在参数后加引号?
    带引号,两个路径都能访问
    不带引号,第一个不能访问
    http://aaa.com/product/8
    http://aaa.com/product/8/6
{
    name: 'product_detail', 
    path: '/product/:id/:type?', 
    component: () => import('/@pages/product/detail.vue')
}

你可能感兴趣的:(【vue3】开发中遇到的问题)