vuethink安装部署

发布时间:2019-08-08 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了vuethink安装部署脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。

下载安装

下载vuethink,gIT clone https://github.COM/honraytech/VueThink.git,下载好后可以看到VueThink目录中有frontEnd和php,frontEnd是vue-cli脚手架搭建的前端模块,php里面是thinkphp5框架

@H_304_7@本地域名
DocumentRoot "E:wampwwwVueThink"
ServerName vt.com

后端配置

新建一个数据库,将php下的install.SQL导进新建的数据库,然后配置php下的config/database.php;配好后打开浏览器访问http://vt.com/php/,如果看到‘vuethink接口’的字样就是成功了

前端配置

打开frontEnd/src/main.js

// 将HOST改成后台地址
axios.defaults.baseURL = 'http://vt.com/php/index.php'
window.HOST = 'http://vt.com/php/index.php'

配置完后在frontEndnpm run dev运行开发版(localhost:8080或者vt.com:8080),npm run build打包发布版,将build生成的dist下的static目录和index.htML拷贝至VueThink目录下,在浏览器输入vt.com就可以访问了

其它问题

  • eslint报错

你可能遇到eslint的疯狂报错,打开frontEnd/build/webpack.base.conf.js,将eslint配置注释掉

eslint: {
    // configFile: './.eslintrc.json'
},
module: {
    PReLoaders: [
      // {
      //   test: /.js$/,
      //   exclude: /node_modules/,
      //   loader: 'eslint'
      // },
      // {
      //   test: /.vue$/,
      //   exclude: /node_modules/,
      //   loader: 'eslint'
      // }
    ],
  • build打包后刷新not found问题

这是vue-router的history模式的问题,在VueThink下建个.htaccess文件,保存下面配置

<IfModule mod_rewrite.c>
  RewriteEngine On
  RewriteBase /
  RewriteRule ^index.html$ - [L]
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule . /index.html [L]
</IfModule>

如果不是apache请查看详细文档,或者直接将路由模式改回默认的hash模式(如果对路由不讲究的话)

const router = new VueRouter({
    mode: 'hash',
    base: __dirname,
    routes
})

最终结构

VueThink
    php    // tp5
    frontEnd    // 开发版、脚手架
    static    // 打包后的静态资
    index.html    // 打包后的入口文件
    .htaccess    // 配置文件

脚本宝典总结

以上是脚本宝典为你收集整理的vuethink安装部署全部内容,希望文章能够帮你解决vuethink安装部署所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。