What are benefits of choosing the Composition API?
How many times can a component be used?
How are components typically structured?
Which is cheaper and easier to deploy, Server Side Rendering (SSR) or Static Site Generation (SSG)?
How do you get the app to be rendered in the Dom?
Nowadays Google and Bing can index Javascript applications just fine, but they must be ___________?
What is the built-in component to render a part of a component’s template into a DOM node that exists outside the DOM hierarchy of that component?
When does a computed property change?
How can Single File Component (SFC) blocks declare pre-processor languages?
What are the two ways to let TypeScript infer types? Hint: it’s the code that follows after defineProps()
For radio, checkbox and select options, the v-model
binding values are usually ______ strings (or booleans for checkbox)
What role do animation libraries like GSAP play when used with Vue watchers?
Answer:
If your use case is sensitive to page load performance, you should avoid shipping it as a pure?
When using TypeScript with Vue, how would you declare that foo
is a required string and bar
is a number?
Which watcher function automatically tracks every reactive property accessed during its synchronous execution?
What is the most common example of wanting to render part of a component in a DOM node that exists outside the DOM hierarchy of that component?
What is the first question you should ask before using Server Side Rendering (SSR)?
How does Vue handle passing complex data to custom elements that cannot be passed through DOM attributes?
If you want to have multiple slot outlets in a single component, what do you need to use?
Should component tests mock child components?
What are component tests?
Vue’s function for creating vnodes ______ is short for hyperscript - which means “JavaScript that produces HTML (hypertext markup language)”.
Do user-created watcher callbacks get called before or after Vue component updates?
What is it called when the DOM structure of the pre-rendered HTML does not match the expected output of the client-side app?
What is the function that allows you to perform a side effect immediately while automatically tracking the effect’s reactive dependencies?
With Vue 3 + TypeScript, which is preferred, Vite or Webpack?
What method allows you to create animations in Vue by binding styles directly to reactive data properties?
Can an emitted event be validated?
It is a convention to name composable functions with ______ (case) names that start with ______
In