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