Skip to content

Instantly share code, notes, and snippets.

@cursosdesarrolloweb
Created January 13, 2021 19:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cursosdesarrolloweb/6d5607b3ebecc1f6e552ef11cbd70385 to your computer and use it in GitHub Desktop.
Save cursosdesarrolloweb/6d5607b3ebecc1f6e552ef11cbd70385 to your computer and use it in GitHub Desktop.
import { createApp } from 'vue'
import App from './App.vue'
import mitt from 'mitt'
const emitter = mitt()
createApp(App)
.provide('emitter', emitter)
.mount('#app')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment