Blogger Information
Blog 12
fans 0
comment 0
visits 7899
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
Vue.js 基础入门系列(一)环境搭建
ys899
Original
468 people have browsed it

什么是Vue.js

Vus.js是一套开发web页面的Javascript脚本框架。

框架特点:

  • 单页模式
  • 轻量级框架
  • MVVM设计模式
    官方网站
  • https://cn.vuejs.org/

    知识点

    安装及使用
    • 1、下载框架库,项目通过script加载CDN文件
    • 2、项目基于npm安装
      • 命令 $ npm i vue —save-dev
      • 国内使用淘宝资源类库
      • 命令 $ cnpm i vue —save-dev
    • 3、项目通过bower来安装
      • 命令 bower i vue —save-dev

代码 第一个helloworld程序

第一种方式 JS加载CND文件

  1. <html>
  2. <head>
  3. <title>Hello World</title>
  4. </head>
  5. <script src="https://unpkg.com/vue/dist/vue.js"></script>
  6. <div id="didi-navigator">
  7. <ul>
  8. <li v-for="tab in tabs">
  9. {{ tab.text }}
  10. </ul>
  11. </div>
  12. <script>
  13. new Vue({
  14. el: '#didi-navigator',
  15. data: {
  16. tabs: [
  17. {text : '巴士'},
  18. {text : '快车'},
  19. {text : '专车'},
  20. {text : '顺风车'},
  21. {text : '出租车'},
  22. {text : '代驾'}]
  23. }
  24. });
  25. </script>
  26. </html>
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post