Currently, there are no error logs/traces when your custom panel plugin view has an error. For example:
plugin’s index.js
:
panel.plugin('hdodov/myplugin', {
views: {
myplugin: {
label: 'MyPlugin',
component: {
created () {
foo()
}
}
}
}
})
If I open the panel, all I see is this:
Which isn’t helpful… I should get something like:
Uncaught ReferenceError: foo is not defined