Nuxt Overview

Nuxt is brought to us by a team of incredibly talented people. With it we can build front end apps, backend apis, and more.

Code

It's written as a templating engine

/app.vue
vue
<template> <div class="pt-24"> <h1>Hello World</h1> <p>I'm a Nuxt blog</p> </div> </template>

The templating engine contains HTML

vue
<template> <div class="pt-24"> <h1>Hello World</h1> <p>I'm a Nuxt blog</p> </div> </template>

Vue files also include script tags which contain js

vue
<template> <div class="pt-24"> <h1>Hello World</h1> <p>I'm a Nuxt blog</p> </div> </template> <script> function helloWorld() { console.log('Hello World') } </script>

Vue files also include script tags which contain js

vue
<template> <div class="pt-24"> <h1>Hello World</h1> <p>I'm a Nuxt blog</p> </div> </template> <script> function helloWorld() { console.log('Hello World') } </script>