import { lazy } from 'react'; const RouteWeather = [ { path: '/weather/info/index', component: lazy(() => import('../../views/weather/WeatherView') ), layout: 'BlankLayout' // meta: { // open: '/analysis/history/list' // // naveLink: '/analysis/history/detail' // } } ]; export default RouteWeather;