microsoft/AI-For-Beginners

Public

mirrored fromhttps://github.com/microsoft/AI-For-BeginnersAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
a031591b2f58ce281ec432541d2d9b527ef35601

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

etc/quiz-app/src/main.js

14lines · modepreview

import Vue from 'vue';
import App from './App.vue';
Vue.config.productionTip = false;
import router from './router';

import VueI18n from 'vue-i18n';
Vue.use(VueI18n);

const i18n = new VueI18n({
	locale: 'en',
	fallbackLocale: 'en',
});

new Vue({ i18n, router, render: (h) => h(App) }).$mount('#app');