Created
May 11, 2021 14:11
-
-
Save mattcdavis1/c23f9cde68944af2b5f3e198a1cf5eee to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { createApp } from 'vue' | |
import router from '~/js/bootstrap/router' | |
const app = createApp({}) | |
app.component('app', require('~/vue/app/index.vue').default) | |
app.component('breadcrumbs', require('~/vue/app/_/breadcrumbs.vue').default) | |
app.use(router) | |
app.mount('#app') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment