orchard/src/renderer/views/pages/plugin-renderer.ejs
2022-03-08 02:26:47 -08:00

22 lines
No EOL
447 B
Text

<script>
Vue.component('plugin-renderer', {
/*html*/
template: `
<component :is="getPage()"></component>
`,
data: function () {
return {
app: this.$root,
}
},
props: {},
mounted() {
},
methods: {
getPage() {
return this.$root.pluginPages.page
}
},
}
);
</script>