module.exports.default = { template: "
Test custom setting {{ setting.id }}. This is from component.js in the plugin/theme's directory. (It can use functions.)
", props: ['setting', 'change'] }; const component = { template: "
Test custom setting {{ setting.id }}. This is included inline with the plugin/theme's config. (Which means it can't use any functions, but can still bind functions to events.)
", props: ['setting', 'change'] }; module.exports.CustomSetting = function (CustomSetting) { return class extends CustomSetting { get component() { return component; } get debug() { return true; } } };