Quiz Yourself on Performance Optimization
Test yourself on what you've learned so far.
We'll cover the following...
We'll cover the following...
Technical Quiz
1.
What’s the correct way to lazy load a route component when using Vue Router?
A.
import Home from '../views/Home.vue'
B.
const Home = import('../views/Home.vue')
C.
const Home = () => import('../views/Home.vue')
D.
import { lazy } from 'vue'
const Home = lazy(() => import('../views/Home.vue'))
1 / 9