November 2017
Beginner to intermediate
398 pages
8h 42m
English
On the browser, the code will be started in the client entry file that we will write now.
import { createApp } from './app' import { getAutoLang } from './utils/i18n' const locale = getAutoLang() createApp({ locale, }).then(({ app }) => { app.$mount('#app') })
entry: './src/entry-client.js',
You can restart the dev script and check whether the app still works in the browser.
Read now
Unlock full access