From the course: Vue.js 3 Essential Training

Unlock this course with a free trial

Join today to access over 22,500 courses taught by industry experts.

Vue project files

Vue project files

- [Instructor] Let's take a look at the remainder two folders, the SRC folder and the public folder. This is where our application lives. And we'll start by looking at the public folder. It has two files, a favicon.ico file. This is the little icon that shows up here at the top of this tab. And it's just a graphic that looks nice. It doesn't necessarily need to be there, but it's included. And then you have the index.html file, which is the actual page that is used whenever our application loads. So this entire page is sitting inside this HTML. Now you can technically add things here, like scripts to libraries, but there are generally better ways to add those things using Node.js and the node package manager. Now this file will be modified, which is also known as injected with the actual code of our application. The most important part of this page is the div right here with an ID of app. That's where your Vue…

Contents