Files
onefinity-firmware/src/js/settings-view.js
2022-12-21 16:26:22 +05:30

15 lines
325 B
JavaScript

module.exports = {
template: "#settings-view-template",
attached: function() {
this.svelteComponent = SvelteComponents.createComponent(
"SettingsView",
document.getElementById("settings")
);
},
detached: function() {
this.svelteComponent.$destroy();
}
};