vm.$broadcast( event, […args] )
Arguments: {String} event [...args]
Usage: Broadcast an event that propagates downward to all descendants of the current instance. Since the descendants expand into multiple sub-trees, the event propagation will follow many different “paths”. The propagation for each path will stop when a listener callback is fired along that path, unless the callback returns true.
Example: var parent = new Vue()
// child1 and child2 are siblings
var child1 = new Vue({ paren