主题
安装和目录结构
一、安装过程中的选项
Programming language : 程序设计语言
Package manager : 包管理器
UI framework : ui框架
Nuxt.js modules : nuxt的js模块
Linting tools : 代码校验工具
Testing framework : 测试框架
Rendering modules : 渲染模式
Deployment target : 部署目标
Development tools : 开发工具
Version control system : 版本控制工具二、目录结构
pages : 存放页面
类似于src/views
components : 存放组件
类似于src/components
static : 存放静态资源
类似于src/assets
store : vuex状态树
类似于src/store
nuxt.config.js : 全局的配置文件
类似于vue.config.js