export default function Scene(config) { const { onLoad } = config config.onLoad = function(options) { if (onLoad) { onLoad.call(this, options) } this.onNotice = function(message) { this.notification = this.notification || this.selectComponent('#qn-notification') if(this.notification){ this.notification.notify(message) } } } return Page(config) }