1、直接用vue init 初始化项目
vue init nuxt-community/express-template <project-name>
2、 cd <project-name>切换到项目目录
npm install 安装项目依赖项
3、npm run dev 开发时运行代码
npm start 正式构建
参考文档:vue ssr
4、技术栈
vue 官方2.0中文文档:https://cn.vuejs.org/v2/guide/
nuxt 中文api文档 :https://zh.nuxtjs.org/api
express 中文api文档:http://www.expressjs.com.cn/4x/api.html
5、在引入环信控件的时候,由于是服务端渲染,造成引入的js文件不能动态产生DOM对象,因此,我的解决办法是在前端动态创建script标签,插入到body中,这样就能保证环信控件正常使用