whqet

Results 77 issues of whqet

1. [best-resume-ever](https://github.com/salomonelli/best-resume-ever) 2. [在线编辑简历](https://luosijie.github.io/vue-resume/#/) [git仓库](https://github.com/luosijie/vue-resume) 3. [Vue动画简历](https://zengtianshengz.github.io/blog/resume-vue/) [git仓库](https://github.com/ZengTianShengZ/resume-vue) 4. [基于Vue的简历](https://ijason.cc/) [git仓库](https://github.com/jas0ncn/resume) 5. [利用vue实现的简历](https://github.com/MaryRu/maryru.github.io)

资源分享

请大家把自己实现的效果以链接的方式,附件在本帖子下方。 格式 00 王海庆 [todolist](https://bestace.github.io/interaction/demos/05/01todo.html) 提交截止时间,下次上课前。

课程作业

📚 技术面试需要掌握的基础知识整理https://github.com/CyC2018/Interview-Notebook

资源分享

1. [官方案例](https://cn.vuejs.org/v2/examples/todomvc.html) 2. [vue+localstorage](https://codepen.io/iamjoshellis/pen/yaAXmr?q=todo+list&limit=all&type=type-pens) 3. [全浏览器兼容localStorage组件](https://github.com/machao/localStorage)

资源分享

Video.js - open source HTML5 & Flash video player http://www.videojs.com

资源分享

Element,一套为开发者、设计师和产品经理准备的基于 Vue 2.0 的桌面端组件库。 https://github.com/ElemeFE/element

资源分享

请大家把自己实现的效果以链接的方式,附件在本帖子下方。 格式 00 王海庆 [tab选项卡](https://bestace.github.io/interaction/demos/03/02tab.html) 提交截止时间,下次上课前。

课程作业

请大家在本贴截图自己的第一个Vue程序。 格式: 学号+姓名+换行+截图。 ![screenshot00019](https://user-images.githubusercontent.com/17582035/36962702-8b3153fa-208b-11e8-9ea1-d2bebec729c2.jpg)

课程作业

1. [javaweb招聘]() 2. [黑马程序员课程大纲](http://itheima.itcast.cn/course/javaeetext.html) 3. ssh? 4. ssm? 5. [如何学习](https://www.zhihu.com/question/21142149) 经过网络调研, 1. 了解java web的岗位需求与行业现状。 2. 回答什么是SSH?SSH分别代表什么,在框架组合中起到什么的作业? 3. 回答什么是SSM?SSM分别代表什么,在框架组合中起到什么的作业? 4. SSH和SSM的区别,选择?

## Vue应用架构 ```html {{message}} //3. JS初始化一个Vue对象 var app=new Vue({ el:'#app', data:{ message:'hello vue!' } }) ``` ## Vue实例 - Vue.js应用创建非常简单,通过构造函数Vue创建一个Vue根实例,并启动应用。 - 几乎所有的数据均存放在一个对象内,作为参数传递给构造函数。 ```js var app = new Vue({ //选项 })...

课程讲义