15 lines
313 B
JavaScript
15 lines
313 B
JavaScript
module.exports = {
|
|
template: "#help-view-template",
|
|
|
|
attached: function() {
|
|
this.svelteComponent = SvelteComponents.createComponent(
|
|
"HelpView",
|
|
document.getElementById("help")
|
|
);
|
|
},
|
|
|
|
detached: function() {
|
|
this.svelteComponent.$destroy();
|
|
}
|
|
};
|