2016-08-25 15:36:30 +08:00
2016-08-25 15:36:30 +08:00
2016-08-19 10:21:07 +08:00
2016-08-18 23:31:27 +08:00
2016-08-18 17:47:12 +08:00
2016-08-19 14:58:54 +08:00
2016-08-23 15:36:32 +08:00
2016-08-18 17:47:12 +08:00
2016-08-19 11:38:07 +08:00
1
2016-08-18 17:54:46 +08:00
2016-08-18 23:31:27 +08:00

Example VUE-SPA

  • If you have any questions, please contacts by my QQ:416175716(有问题请联系qq416175716)
  • Any helpful suggestions would be welcome欢迎提出意见和建议!

image

How to use

$ git clone git@github.com:allan2coder/Vue-SPA.git <yourAppName>
$ cd <yourAppName>
$ npm install

launch the project app.

$ npm start

Then, You should see a new browser tap opening and a page of "index.html" in http://127.0.0.1:8080.

-watch on your mobile

npm run ip

访问 你本地的ip:9000

Release

MAC

npm run mb

windows

npm run wb

Construction

│──.gitignore          # 忽略无需git控制的文件  比如 node_modules
│──package.json        # 项目配置
│──readme.md           # 项目说明
│──index.html          # 首页
│──index.tpl           # 首页模板  在发布的时候 执行 PRODUCTION=1 webpack 会生成一个d.html并注入脚本样式达到版本控制的目的
│──webpack.config.js   # webpack 配置文件
│
├─node_modules
└─src
    │──app.js          # 启动配置,配置路由,过滤器
    │──app.vue         # 主vue
    │──filters.js      # 过滤器
    │──routers.js      # 路由
    │
    ├─components       # 组件
    │     │──my-component.vue
    │
    ├─css              # 公用样式
    │     │──common.css
    │
    └─views            # 页面
            ──about.vue
            ──home.vue
            ──not-found.vue

##学习参考: 待续...

Description
vue3 + vite + nut ui + sass + viewport 适配方案 +axios 封装
Readme 11 MiB
Languages
TypeScript 43.1%
CSS 23.2%
Vue 22.1%
JavaScript 8.6%
HTML 2.6%
Other 0.4%