Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
import Vue from 'vue'
import App from './App'
import router from './router'
import 'classlist-polyfill'
import 'focus-visible'
import 'svg-innerhtml'
import i18n from 'veui/managers/i18n'
i18n.locale = 'en-US'
Vue.config.productionTip = false
/* eslint-disable no-new */
new Vue({
el: '#app',
name: 'app',
router,
render: h => h(App)
})
import 'classlist-polyfill'
import 'focus-visible'
import 'promise-polyfill/src/polyfill'
import Vue from 'vue'
import App from './App'
import router from './router'
import i18n from 'veui/managers/i18n'
i18n.locale = 'en-US'
Vue.config.productionTip = false
/* eslint-disable no-new */
new Vue({
el: '#app',
name: 'app',
router,
render: h => h(App)
})