summaryrefslogtreecommitdiff
path: root/src/env/router/sila.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/env/router/sila.js')
-rw-r--r--src/env/router/sila.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/env/router/sila.js b/src/env/router/sila.js
index e9d238b0..539f3c16 100644
--- a/src/env/router/sila.js
+++ b/src/env/router/sila.js
@@ -36,6 +36,8 @@ import FansDynamic from '@/views/_sila/Fans/Dynamic';
import MotherboardDynamic from '@/views/_sila/Motherboard/Dynamic';
import PowerStatic from '@/views/_sila/Power/Static';
import PowerDynamic from '@/views/_sila/Power/Dynamic';
+import PciDevices from '@/views/_sila/PciDevices';
+
import i18n from '@/i18n';
const routes = [
@@ -335,6 +337,14 @@ const routes = [
},
},
{
+ path: '/pci-devices',
+ name: 'pci-devices',
+ component: PciDevices,
+ meta: {
+ title: i18n.t('appPageTitle.pciDevices'),
+ },
+ },
+ {
path: '*',
name: 'page-not-found',
component: PageNotFound,