510908220 / web-templates

整理一些web模板,在需要的时候直接用.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

web-templates

整理一些web模板,在需要的时候直接用.

vuejs

bootstrap

http://www.bootcss.com/里有很多好用的库

模板

工具

注意

  • 安装nodejs: https://nodejs.org/en/download/package-manager/
  • 安装cnpm: 国内的话可以使用淘宝定制的cnpm (gzip 压缩支持) 命令行工具代替默认的 npm,这样不仅速度快避免由于下载一些依赖导致失败.

问题

如果vuejs的VueRouter使用的是history模式,例如:

var router = new VueRouter({
  routes: routes,
  mode: 'history',
  scrollBehavior: function (to, from, savedPosition) {
    return savedPosition || { x: 0, y: 0 }
  }
})

npm build后,使用nginx的话在其他页面刷新的话会导致404错误. 解决:

location / {

    root /root/dist;

    try_files $uri $uri/ /index.html =404;

}

About

整理一些web模板,在需要的时候直接用.

License:MIT License