vue-epic-bus
Advanced tools
Comparing version 0.1.1 to 0.1.2
@@ -1,1 +0,1 @@ | ||
export {BusPlugin} from './src/BusPlugin' | ||
exports.BusPlugin = require('./src/BusPlugin').BusPlugin |
{ | ||
"name": "vue-epic-bus", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"description": "Bus plugin for vue.js", | ||
@@ -5,0 +5,0 @@ "author": "Yauheni Prakopchyk", |
@@ -6,3 +6,3 @@ const defaultOptions = { | ||
export class Bus { | ||
class Bus { | ||
constructor () { | ||
@@ -40,3 +40,3 @@ // Subscribed components - array of closures | ||
export const BusPlugin = { | ||
const BusPlugin = { | ||
install (Vue, options = {}) { | ||
@@ -72,1 +72,3 @@ options = Object.assign({}, defaultOptions, options) | ||
} | ||
exports.BusPlugin = BusPlugin |
4256
58