All Projects → eteplus → Vue Sui Demo

eteplus / Vue Sui Demo

Licence: mit
用vue 和 SUI-Mobile 写了一个移动端demo,用来反馈学习vue的成果(禁用了SUI自带的路由,使用vue-router, vue-resource, webpack)[a web app written by vue & sui-mobile]

Programming Languages

javascript
184084 projects - #8 most used programming language
Vue
7211 projects
HTML
75241 projects

Projects that are alternatives of or similar to Vue Sui Demo

vue-2.x-boilerplate
A Vue.js 2.x Boilerplate with Vuex, vue-router AND Bulma
Stars: ✭ 25 (-98.57%)
Mutual labels:  vue-router, vue-resource
basic-transport-info-app
A progressive web app to show direct & indirect buses / transport between two places / cities / stops .Show next schedule & travel duration. Algorithm to calculate indirect buses on basis of their schedule time. Voice search . Locate nearest city/stop by gps. Bus timetable.
Stars: ✭ 12 (-99.31%)
Mutual labels:  vue-router, vue-resource
Copilot
Responsive Bootstrap 3 Admin Template based on AdminLTE with vue.js
Stars: ✭ 2,698 (+54.44%)
Mutual labels:  vue-router, vue-resource
Lvyou
🎒Vue.js 初步进阶案例,路由懒加载,进入页面前登录判断,返回导航判断,RestAPI接口使用,组件封装,Vuex状态封装,keep-alive页面缓存等功能
Stars: ✭ 195 (-88.84%)
Mutual labels:  vue-router, vue-resource
Vue Dropload
vue下拉加载,简单路由,模态框组件等开发
Stars: ✭ 55 (-96.85%)
Mutual labels:  vue-router, vue-resource
Myblog
vue + node 实现的一个博客系统
Stars: ✭ 285 (-83.69%)
Mutual labels:  vue-router, vue-resource
Vue-CAMP
VueJS
Stars: ✭ 16 (-99.08%)
Mutual labels:  vue-router, vue-resource
Social
基于Vue的社区论坛项目
Stars: ✭ 102 (-94.16%)
Mutual labels:  vue-router, vue-resource
Vue Gok
vue2.0-王者荣耀助手
Stars: ✭ 27 (-98.45%)
Mutual labels:  vue-router, vue-resource
Vue 163 Music
【停止维护】网易云音乐web版,支持PC端常用功能,localStorage保存播放列表
Stars: ✭ 788 (-54.89%)
Mutual labels:  vue-router, vue-resource
Vue Boilerplate
Vue 2.0 boilerplate,based on webpack and es6,includes vuex,vue-router,vue-resource, vuelidate
Stars: ✭ 94 (-94.62%)
Mutual labels:  vue-router, vue-resource
Vue Ruby China
使用Vue.js框架搭建的ruby china山寨版,集成vue-router+vuex等
Stars: ✭ 113 (-93.53%)
Mutual labels:  vue-router, vue-resource
Plumemo Admin
plumemo 后端管理系统
Stars: ✭ 132 (-92.44%)
Mutual labels:  vue-router
Vue Juejin
vue仿掘金app客户端开发web版掘金app
Stars: ✭ 135 (-92.27%)
Mutual labels:  vue-router
Echat
基于Vue的点对点聊天项目
Stars: ✭ 130 (-92.56%)
Mutual labels:  vue-router
Questionnaire
📋 问卷系统
Stars: ✭ 128 (-92.67%)
Mutual labels:  vue-router
Vue Cart
💵 A shop cart made with vue
Stars: ✭ 140 (-91.99%)
Mutual labels:  vue-router
Vue Element Quick Start
Vue2, Vuex 3, Vue Router 3, Element-ui and Typescript SPA project quick start kit(Vue element ui 快速开始脚手架)
Stars: ✭ 135 (-92.27%)
Mutual labels:  vue-router
Vue2 Manage
基于 vue + element-ui 的后台管理系统
Stars: ✭ 11,345 (+549.4%)
Mutual labels:  vue-router
Learnvue
Vue.js 源码解析
Stars: ✭ 11,516 (+559.19%)
Mutual labels:  vue-router

vue-sui-demo

线上访问地址 http://eteplus.github.io/vue-sui-demo

如果对您有帮助,您可以点右上角 "Star" 支持一下 谢谢! ^_^

对于那些发邮件给我的同学说声抱歉, 由于本人的邮箱忘记密码了,最近才找回, 如果遇到什么问题的,欢迎一起交流和学习!(2016-07-11)


Vue很轻量,易定制,比较适合移动端,很喜欢Vue写组件的方式, 所有用VUESUI-Mobile 写了一个移动端demo,用来反馈vue的学习成果(禁用了SUI自带的路由,使用Vue-router

环境
  1. node v5.12.0
  2. cnpm 4.2.0
  3. npm 3.3.9
技术栈

vue

vue-router

vue-resource

webpack

sui-mobile

es6-babel


截图


print


安装

项目地址:(使用git clone

git clone https://github.com/eteplus/vue-sui-demo.git

通过npm安装本地服务第三方依赖模块(需要已安装Node.js),使用npm安装依赖模块可能会很慢,建议换成cnpm

npm install -g cnpm --registry=http://registry.npm.taobao.org
# 安装依赖模块
cnpm install

# 启动服务
npm run dev

# 发布代码
npm run build

开发

目录结构

.
├── README.md           
├── dist                     // 项目build目录
├── config                   // 环境变量和入口,出口配置
├── static                   // 静态资源目录
├── build                    // 项目的配置文件目录
│   ├── dev-server.js        // 开发的服务配置
│   ├── webpack-dev-conf.js  // 开发的Webpack 配置文件
│   ├── webpack-prod-conf.js // 生产的Webpack 配置文件
│   ├── webpack-base-conf.js // 基本的Webpack 配置文件
├── package.json             // 项目配置文件
├── src                      // 生产目录
│   ├── assets               // css js 和图片资源
│   ├── data                 // 数据文件
│   ├── components           // 各种组件
│   ├── views                // 各种页面
│   ├── directives           // 各种指令
│   ├── filters.js           // 各种过滤器
│   ├── router.js            // 路由配置
│   └── main.vue             // 根组件
│   └── app.js               // Webpack 预编译入口         
├── index.html               // 项目入口文件
.

更新记录

参看 CHANGELOG.md

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].