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