Complete Vue.js Guide [8/10]

OnlyKiosk Dev Tech
17 min readSep 14, 2021

We have a root component here. It has a child component in it.

The root component is installed by the mount method. We select a DIV and mount the root component to it.

In the current program, the root component is mounted to the VueApp DIV. This means the entire Vue program only control the VueApp DIV.

--

--