Coder Social home page Coder Social logo

libin1991 / vue.js-practice Goto Github PK

View Code? Open in Web Editor NEW

This project forked from catkinmu/vue.js-practice

0.0 1.0 0.0 569 KB

vue+iview 实现可编辑表格

Home Page: https://juejin.im/post/5bd7bd4be51d45662d5289e1

Vue 6.51% JavaScript 14.78% HTML 2.00% CSS 76.71%

vue.js-practice's Introduction

vue.js_2.x_demo

基于 Vue2.x 的实践demo

用法

克隆仓库到本地

git clone https://github.com/catkinmu/vue.js-practice.git

项目结构

.
├── TabSwitch                     ## Tab切换组件
│   └── index.html                ## html模板
│   └── js
│       ├── pane.js               ## 面板组件
│       └── tabs.js               ## 切换组件
│   └── css
│       └── style.css             ## 样式表
├── MessageBoard                  ## render模式留言板demo
│   └── index.html                ## html模板
│   └── js
│       ├── index.js              ## 主要脚本
│       ├── input.js              ## 输入框组件(昵称, 留言两个组件)
│       └── list.js               ## 留言列表组件
│   └── css
│       └── style.css             ## 样式表
├── SortTable                     ## 可排序table组件
│   └── index.html                ## html模板
│   └── js
│       └── index.js              ## 表格组件
│   └── css
│       └── style.css             ## 样式表
├── RouteDemo                     ## vue路由初探
│   ├── index.html                ## html模板
│   ├── index.ejs                 ## 打包模板(动态设置js,css路径)
│   ├── app.vue                   ## 组件入口
│   ├── main.js                   ## 入口文件(包含路由配置)
│   ├── style.css                 ## 项目样式表
│   └── views                     ## 组件库
│       ├── about.vue
│       ├── user.vue
│       └── index.vue
│   ├── .babelrc                  ## ES6语法编译配置
│   ├── .gitignore                ## git版本控制忽略文件
│   ├── webpack.config.js         ## 项目打包配置
│   ├── webpack.prod.config.js    ## 生产环境打包配置
│   └── package.json              ## 配置项目相关信息,通过执行 npm init 命令创建
├── VuexDemo                      ## Vuex状态管理初探
│   ├── index.html                ## html模板
│   ├── index.ejs                 ## 打包模板(动态设置js,css路径)
│   ├── app.vue                   ## 组件入口
│   ├── main.js                   ## 入口文件(包含vuex配置)
│   ├── style.css                 ## 项目样式表
│   └── views                     ## 组件库
│       ├── about.vue
│       ├── user.vue
│       └── index.vue
│   ├── .babelrc                  ## ES6语法编译配置
│   ├── .gitignore                ## git版本控制忽略文件
│   ├── webpack.config.js         ## 项目打包配置
│   ├── webpack.prod.config.js    ## 生产环境打包配置
│   └── package.json              ## 配置项目相关信息,通过执行 npm init 命令创建
├── Daily                         ## 仿知乎日报
│   ├── index.html                ## html模板
│   ├── index.ejs                 ## 打包模板(动态设置js,css路径)
│   ├── app.vue                   ## 组件入口
│   ├── main.js                   ## 入口文件(包含vuex配置)
│   ├── proxy.js                  ## 接口代理配置
│   ├── style.css                 ## 项目样式表
│   └── compontents               ## 组件库
│       ├── daily-article.vue     ## 详情组件
│       └── item.vue              ## 列表组件
│   └── directives
│       └── time.js               ## 时间指令
│   └── libs
│       └── util.js               ## 工具包
│   ├── .babelrc                  ## ES6语法编译配置
│   ├── .gitignore                ## git版本控制忽略文件
│   ├── webpack.config.js         ## 项目打包配置
│   ├── webpack.prod.config.js    ## 生产环境打包配置
│   ├── package.json              ## 配置项目相关信息,通过执行 npm init 命令创建
│   └── README.md                 ## 项目说明
├── Shopping                      ## 一个简易的电商网站
│   ├── index.html                ## html模板
│   ├── index.ejs                 ## 打包模板(动态设置js,css路径)
│   ├── app.vue                   ## 组件入口
│   ├── main.js                   ## 入口文件(包含vuex配置)
│   ├── proxy.js                  ## 接口代理配置
│   ├── style.css                 ## 项目样式表
│   └── compontents               ## 组件库
│       ├── daily-article.vue     ## 详情组件
│       └── item.vue              ## 列表组件
│   └── directives
│       └── time.js               ## 时间指令
│   └── libs
│       └── util.js               ## 工具包
│   ├── .babelrc                  ## ES6语法编译配置
│   ├── .gitignore                ## git版本控制忽略文件
│   ├── webpack.config.js         ## 项目打包配置
│   ├── webpack.prod.config.js    ## 生产环境打包配置
│   ├── package.json              ## 配置项目相关信息,通过执行 npm init 命令创建
│   └── README.md                 ## 项目说明
├── IViewEditTable                ## vue+iview 实现的可编辑表格
│   └── index.html                ## 首页
│   └── js
│       └── editTable.js          ## 首页JS
│   └── ivew                      ## iview相关
│   └── vue
│       ├── axios.min.js          ## axios (ajax)
│       ├── util.js               ## 与业务无关的纯工具函数包
│       └── vue.min.js            ## vue (2.x)
└── README.md                     ## 项目说明

vue.js-practice's People

Contributors

catkinmu avatar

Watchers

Seeker avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.