mirror of
https://github.com/koush/scrypted.git
synced 2026-04-16 05:10:28 +01:00
13 lines
309 B
Vue
13 lines
309 B
Vue
<template>
|
|
|
|
</template>
|
|
<script>
|
|
import { findPluginDevice, getDeviceViewPath } from "./helpers";
|
|
|
|
export default {
|
|
async mounted() {
|
|
const core = findPluginDevice(this.$scrypted.systemManager, '@scrypted/core', 'aggregatecore');
|
|
this.$router.replace(getDeviceViewPath(core.id));
|
|
},
|
|
};
|
|
</script> |