Test yourself under real exam conditions: 50 timed questions, 60 on the clock, pass mark 70%%. Instant score with a full review of everything you got wrong. Free — no account needed.
Exam details
shallowReactive in Vue?It creates a reactive object where only the top-level properties are tracked; nested objects stay non-reactive unless wrapped separately.
triggerRef() used for?It manually notifies Vue that a shallowRef changed after you mutated its inner value without replacing the reference.
getCurrentInstance() return?It returns the current active component instance and is mainly useful in advanced framework or library code.
Vue.compile()?It is a runtime+compiler API that turns a template string into a render function at runtime.
mode="out-in" do on <Transition>?It waits for the leaving element to finish its transition before inserting the entering element.