nuxt.js安装
nuxt.js官网https://zh.nuxtjs.org/
安装
以下是脚手架模板
vue init nuxt-community/starter-template <project-name>
vue init nuxt-community/koa-template <project-name>
vue init nuxt-community/express-template <project-name>
更多请看https://github.com/nuxt-community
操作和vue-cli脚手架一样
进入目录
cd
安装
npm install # or yarn install
启动
npm run dev
默认运行端口3000:http://localhost:3000.