说明:这只是对于项目的记录,如有对nuxt的详细需求请走https://zh.nuxtjs.org/guide/installation
1.这里我采用了npx安装(搭建nuxt的前提是要有node)
进入cmd输入
npx create-nuxt-app <项目名>//注:此处项目名为可选项,如果不写就是当前目录,写了就会创建新的文件夹
然后会等待----嘤嘤嘤--等待。。。。好了出现一些选项(复制官网的链接在头部)
1.在集成的服务器端框架之间进行选择:
选择第一个
* None (Nuxt默认服务器)
* [Express](https://github.com/expressjs/express)
* [Koa](https://github.com/koajs/koa)
* [Hapi](https://github.com/hapijs/hapi)
* [Feathers](https://github.com/feathersjs/feathers)
* [Micro](https://github.com/zeit/micro)
* [Adonis](https://github.com/adonisjs/adonis-framework) (WIP)
继续等待。。。。哦.......这里不用等
2.选择您喜欢的UI框架(也是选项) 我当然是为element转身 所以我选择element
* None (无)
* [Bootstrap](https://github.com/bootstrap-vue/bootstrap-vue)
* [Vuetify](https://github.com/vuetifyjs/vuetify)
* [Bulma](https://github.com/jgthms/bulma)
* [Tailwind](https://github.com/tailwindcss/tailwindcss)
* [Element UI](https://github.com/ElemeFE/element)
* [Ant Design Vue](https://github.com/vueComponent/ant-design-vue)
* [Buefy](https://buefy.github.io/)
3.选择你想要的Nuxt模式 (Universal or SPA)第一个
添加 axios module 以轻松地将HTTP请求发送到您的应用程序中。(选择axios)
添加 EsLint 以在保存时代码规范和错误检查您的代码。
6.添加 Prettier 以在保存时格式化/美化您的代码
好啦所有的都走完了,然后!cd到你创建的项目去或者你没有创建新的目录就不cd
$ cd <project-name>
$ npm run dev