Created
July 26, 2021 12:23
-
-
Save Arafat-Alam/f6d160c06b236c43c54deea09682a26b to your computer and use it in GitHub Desktop.
app.js
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 Vue from 'Vue'; | |
import App from './components/App.vue'; | |
import VueRouter from 'vue-router'; | |
import router from './route'; | |
Vue.use(VueRouter); | |
export default new Vue({ | |
router, | |
render: h => h(App) | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment