Import Plot

This commit is contained in:
Khalid Adil 2023-08-03 11:27:50 -05:00
parent 33bb8b4cb5
commit 3322705a07

View File

@ -34,6 +34,7 @@ define([
'./ui/router/ApplicationRouter',
'./ui/router/Browse',
'./ui/layout/Layout.vue',
'./plugins/plot/Plot.vue',
'./ui/preview/plugin',
'./api/Branding',
'./plugins/licenses/plugin',
@ -59,6 +60,7 @@ define([
ApplicationRouter,
Browse,
Layout,
Plot,
PreviewPlugin,
BrandingAPI,
LicensesPlugin,
@ -389,7 +391,7 @@ define([
},
template: '<Layout ref="layout"></Layout>'
});
appLayout.component('Plot', openmct.components.Plot);
appLayout.component('Plot', Plot);
const component = appLayout.mount(domElement);
component.$nextTick(() => {
this.layout = component.$refs.layout;