March 2018
Beginner to intermediate
344 pages
7h 7m
English
We can use Vue CLI to create a new Nuxt project using the starter template. This provides us with a barebones Nuxt project and saves us from having to configure everything manually. We'll be creating a "recipe list" application named "Hearty Home Cooking" that uses a REST API to get category and recipe names. Run the following command in your Terminal to create a new Nuxt project:
# Create a new Nuxt project$ vue init nuxt-community/starter-template vue-nuxt# Change directory$ cd vue-nuxt# Install dependencies$ npm install# Run the project in the browser$ npm run dev
The preceding steps are quite similar to what we've come to expect when creating a new Vue project, instead, we can simply use the Nuxt repository and ...
Read now
Unlock full access