# Single-File Components {#single-file-components} ## Introduction {#introduction} Vue Single-File Components (a.k.a. `*.vue` files, abbreviated as **SFC**) is a special file format that allows us to encapsulate the template, logic, **and** styling of a Vue component in a single file. Here's an example SFC:
```vue ```
```vue ```
As we can see, Vue SFC is a natural extension of the classic trio of HTML, CSS and JavaScript. The `