Skip to content

Instantly share code, notes, and snippets.

@cursosdesarrolloweb
Created February 17, 2021 05:44
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/f3f2acf53df0cdea545665d267788c3e to your computer and use it in GitHub Desktop.
Save cursosdesarrolloweb/f3f2acf53df0cdea545665d267788c3e to your computer and use it in GitHub Desktop.
import { createApp } from 'vue'
import App from './App.vue'
import MyComponent from '@/components/MyComponent'
const app = createApp(App)
app
.component('my-component', MyComponent)
app
.use(router)
.mount('#app')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment