fix: lint

This commit is contained in:
xingyu4j
2025-10-20 10:49:08 +08:00
parent 30c7727361
commit 496a808b86
23 changed files with 86 additions and 45 deletions

View File

@@ -18,7 +18,8 @@ const routes: RouteRecordRaw[] = [
title: '产品详情',
activePath: '/iot/device/product',
},
component: () => import('#/views/iot/product/product/modules/detail/index.vue'),
component: () =>
import('#/views/iot/product/product/modules/detail/index.vue'),
},
{
path: 'device/detail/:id',
@@ -27,11 +28,11 @@ const routes: RouteRecordRaw[] = [
title: '设备详情',
activePath: '/iot/device/device',
},
component: () => import('#/views/iot/device/device/modules/detail/index.vue'),
component: () =>
import('#/views/iot/device/device/modules/detail/index.vue'),
},
],
},
];
export default routes;