vue3+ts+element-plus
路由配置
//2.0找不到路由用 * 3.0需要使用正则(/:catchAll(.*)) 404页面路由
{
path:'*',
name:'/404',
component:()=>import('../view/404.vue')
},
{
path:/:catchAll(.*)',
name:'/404',
component:()=>import('../view/404.vue')
}
使用this.$ref时需要引入
import { getCurrentInstance } from 'vue'
setup(){
//给ctx 结构出来 类型监测 //@ts-ignore 忽略这个
const { ctx } = getCurrentInstance()
this.$ref=ctx.$ref
}