const Show = () => import("./Show")
const Detail = () => import("./Detail")
const Swift = () => import("./Swift")
const BusRouter =  [
    {path:'show',component:Show},
    {path:'detail',component:Detail},
    {path:'swift',component:Swift},
]
export default BusRouter