0 votes
in VueJS by

What is the difference between full and runtime only builds?

1 Answer

0 votes
by

There are two types of builds provided by VueJS,

1. Full: These are the builds that contain both the compiler and the runtime.

2. Runtime Only: These builds doesn't include compiler but the code is responsible for creating Vue instances, rendering and patching virtual DOM. These are about 6KB lighter min+gzip.

Related questions

0 votes
asked Feb 7, 2023 in VueJS by GeorgeBell
+1 vote
asked Feb 6, 2023 in VueJS by john ganales
...