出现这个错误是因为:
在写路由分配表的时候component的时候多写了一个s,去掉就好

错误代码如下:


const routes =[
    {
        path:'/home',
        components:Home
    },
     {
        path:'/cart',
        components:Cart
    }
    ]

正确的代码如下:

const routes =[
    {
        path:'/home',
        component:Home
    },
     {
        path:'/cart',
        component:Cart
    }
    ]
Logo

前往低代码交流专区

更多推荐