riot-starter/public/js/mixins/relay.mixin.js

11 lines
165 B
JavaScript
Raw Normal View History

2019-07-20 23:05:55 +00:00
/**
* Global Observiable Mixin
*
* simplifies communication between mutliple components
* on a single page
*/
2019-07-21 20:59:34 +00:00
export default {
2019-07-20 23:05:55 +00:00
relay: riot.observable()
};