Home > Backend Development > PHP Tutorial > javascript - 想学下vue.js

javascript - 想学下vue.js

WBOY
Release: 2016-06-06 20:12:14
Original
2088 people have browsed it

各位大神,有没有好的学习vue.js的例子啊

回复内容:

各位大神,有没有好的学习vue.js的例子啊

官方exmaple看完先
不行的话awesome-vue上面一堆项目

<code><div id="app">
  {{ message }}
</div>
new Vue({
  el: '#app',
  data: {
    message: 'Hello Vue.js!'
  }
})</code>
Copy after login

vue.js起步 官方文档刷一遍;
然后可以看看台湾的小凡 vue.js 教学视频

http://vuejs.org.cn/guide/

http://vuejs.org.cn/
官方中文文档是最好的学习资源

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template