How do you specify a custom prefix for the transition classes applied by the <Transition>
built-in component?
State-______ (full / less) logic involves managing state that changes over time.
When does a computed property change?
What does Client Hydration refer to?
Should component tests mock child components?
What is a fallthrough attribute?
What is the linting approach maintained by the Vue team?
Where is routing done in Single Page Applications (SPAs)?
What role do animation libraries like GSAP play when used with Vue watchers?
Answer:
Where can you use a globally registered component?
Nowadays Google and Bing can index Javascript applications just fine, but they must be ___________?
How do you pass template content to a child component?
In Vue, the framework controls both the compiler and the runtime. We call this hybrid approach ______.
What’s a way to declare props?
Which syntax is used for text interpolation in templates?
What is the prefix for attributes provided by Vue?
For complex logic that includes ______ data, it is recommended to use a ______ property.
What is the purpose of tree flattening?
Is it necessary to manually stop watcher functions?
What is an alternative to computed properties for displaying filtered/sorted lists, in cases where this is not feasible?
What is the name of the official VSCode extension that provides TypeScript support inside Vue SFCs, along with many other great features?
Which properties could the binding
argument contain?
When using TypeScript with Vue, how would you declare that foo
is a required string and bar
is a number?
Custom directives should only be used when the desired functionality can only be achieved via ______ ______ ______. Prefer declarative templating using built-in directives such as v-bind
when possible.
When working with the options API, the ______ hook can be used to run code after the component has finished the initial rendering and created the DOM nodes.
What app config property can be used for reporting errors to tracking services?
Update performance refers to?
How can you take advantage of the benefits of Single File Components (SFCs) while keeping templates, Javascript and styles in separate files?
What is the name of the officially supported router for Vue projects?
Do template variables need to be escaped in Vue?
Which method does Vue provide to create custom elements using Vue component APIs?
How can you restructure your code when a component has become too large to navigate?
Does slot content have access to the state of the parent component?
The v-for
directive requires a special syntax in the form of ______ ______ ______ where ______ is the source data array and item
is an alias for the array element being iterated on.
In