Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
main.js 520 B
Newer Older
Gray Fawkes's avatar
0.1
Gray Fawkes committed
// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue'
import App from './App'
import router from './router'
import i18n from '@/i18n'
require('../node_modules/bootstrap/dist/css/bootstrap.css')

Vue.config.productionTip = false

i18n.locale = 'fr'

/* eslint-disable no-new */
new Vue({
	el: '#app',
	router,
	components: { App },
	template: '<App/>',
	i18n,
	render: h => h(App)
}).$mount('#app')

Vue.use(i18n)