Singleton.
PUB/SUB Pattern. Topic listener that triggers a callback when the particular topic is published.
Parameters
PUB/SUB Pattern.
Parameters
Component factory method
Parameters
Examples
Raven.component("Button", {
el: ".button",
data() {
return {
buttonName: 'button-click'
}
},
methods: {
buttonClick() {
alert("CLICKED");
}
}
});
Returns Object The custom component