Skip to content

Instantly share code, notes, and snippets.

@slenty
slenty / componentA.vue
Created June 20, 2018 07:34 — forked from ahmadshah/componentA.vue
Vuejs Event Emitter
<template>
<button @click="emitEvent">EVENT</button>
</template>
<script>
import { EV } from './events'
export default {
methods: {
emitEvent() {