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

14 lines
259 B
JavaScript

"use strict";
module.exports = {
template: "#io-view-template",
props: [ "config", "template", "state" ],
events: {
"input-changed": function() {
this.$dispatch("config-changed");
return false;
}
}
};