Tooling support and build tools can greatly improve the development experience in any workflow and that is as true with Vue as well. In this chapter, we will learn about single file components and the Vue command-line interface.
Single File Components
Single File Components, or SFCs, allow us to build Vue components in a single file with separate sections for the template, the JavaScript, and the styles. This allows us to take advantage of syntax highlighting and code suggestions for the language that is specified for a particular section.
SFC use the .vue file extension .
To use SFCs, we need a build ...