飞道的博客

了解Vue框架的大致学习方向(第一课)

1292人阅读  评论(0)

今天很残酷,明天更残酷,后天很美好,但是绝大部分人是死在明天晚上,只有那些真正的英雄才能见到后天的太阳。” 这句话看起来很残酷,但这就是现实。是的,未来是美好的,但是过程是残酷的

通过上面的案例去了解一下Vue框架中我们要学习什么

在学习一门新的技术首先想到的是官方文档

内置指令 | Vue.js

简介 | Vue.js

主流前端框架/库简介
    目前的流行前端框架/库有:Vue、React、Angular(三大霸主)以及Bootstrap、APICloud、jQuery等;(jQuery、React为库)

  1.     Vue 毫无疑问是当前最流行最火爆的前端框架之一。vue作为渐进式前端框架,由当时的谷歌工程师尤雨溪大神业余时间所写,一放到github就引起流行,github上点赞数百万。vue现在几乎作为前端必备框架,特点高效,灵活,稳定,功能强大,代码少,运行速度快,整个文件只有200多K。Vue所关注的核心是MVC模式中的视图层,同时,它也能方便地获取数据更新,并通过组件内部特定的方法实现视图与模型的交互。vue做了必须的事,又不会做职责之外的事。做为前端,不懂vue是不行了。

  2.     React是Facebook在2013年开源的前端框架,由于 React的设计思想极其独特,属于革命性创新,性能出众,代码逻辑却非常简单。所以,越来越多的人开始关注和使用,认为它可能是将来 Web 开发的主流工具。React主要用于构建UI。你可以在React里传递多种类型的参数,如声明代码,帮助你渲染出UI、也可以是静态的HTML DOM元素、也可以传递动态变量、甚至是可交互的应用组件。也就是说同一组人只需要写一次 UI ,就能同时运行在服务器、浏览器和手机。开发效率高,事半功倍。
  3.     AngularJS诞生于2009年,由Misko Hevery 等人创建,是为了克服HTML在构建应用上的不足而设计的。后为Google所收购。是一款优秀的前端JS框架,已经被用于Google的多款产品当中。AngularJS有着诸多特性,最为核心的是:MVC(Model–view–controller)、模块化、自动化双向数据绑定、语义化标签、依赖注入等等。2016年angular2正式被发布,在Anguar2.0之前的版本都叫做AngularJS(Angular2不是从Angular1升级过来的,Angular2是重写的)。
  4.     jQuery是一个快速、简洁的JavaScript库,是继Prototype之后又一个优秀的JavaScript代码库。jQuery设计的宗旨是写更少的代码,做更多的事情。它封装JavaScript常用的功能代码,提供一种简便的JavaScript设计模式,优化HTML文档操作、事件处理、动画设计和Ajax交互。代码十分精炼,代码量小,速度快,犀利。使用量非常大。
  5.     Bootstrap(react是Facebook开发的,那么做为Facebook的竞争对手,Twitter公司也不甘示弱,开源了Bootstrap。)是由美国Twitter公司的设计师Mark Otto和Jacob Thornton合作基于HTML、CSS、JavaScript 开发的简洁、直观、强悍的前端开发框架,使得 Web 开发更加快捷。Bootstrap提供了优雅的HTML和CSS规范,它即是由动态CSS语言Less写成。Bootstrap一经推出后颇受欢迎,一直是GitHub上的热门开源项目,包括NASA的MSNBC(微软全国广播公司)的Breaking News都使用了该项目。国内一些移动开发者较为熟悉的框架,如WeX5前端开源框架等,也是基于Bootstrap源码进行性能优化而来。Bootstrap 能给你的 Web 开发提供了时尚的版式,表单,buttons,表格,网格系统等等。
  6.     apicloud包括api.js和api.css)专门为移动端APP开发而设计的框架,适应不同的移动设备,而且可以和其他框架一起引入项目中使用,非常灵活,优秀。

注:框架和库的区别

    库(插件):是一种封装好的特定方法集合,对项目的侵入性较小,提供给开发者使用,控制权在使用者手中,如果某个库无法完成某些需求,可以很容易切换到其它库实现需求。
    框架:是一套架构,会基于自身特点向用户提供一套相当完整的解决方案,而且控制权在框架本身;对项目的侵入性较大,使用者要按照框架所规定的某种特定规范进行开发,项目如果需要更换框架,则需要重新架构整个项目。

Vue框架创始人

vue框架的作者是一位中国人,叫尤雨溪。

尤雨溪毕业于上海复旦附中,在美国完成大学学业,本科毕业于Colgate University,后在Parsons设计学院获得Design & Technology艺术硕士学位,现任职于纽约Google Creative Lab。

带着你到官方文档上去学习

 第一步 Vue环境的安装 在Html的使用

对于制作原型或学习,你可以这样使用最新版本:

<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>

对于生产环境,我们推荐链接到一个明确的版本号和构建文件,以避免新版本造成的不可预期的破坏:

<script src="https://cdn.jsdelivr.net/npm/vue@2.6.14"></script>

如果你使用原生 ES Modules,这里也有一个兼容 ES Module 的构建文件:


  
  1. <script type= "module">
  2. import Vue from 'https://cdn.jsdelivr.net/npm/vue@2.6.14/dist/vue.esm.browser.js'
  3. </script>

第二步 Vue.js 是什么

Vue (读音 /vjuː/,类似于 view) 是一套用于构建用户界面的渐进式框架。与其它大型框架不同的是,Vue 被设计为可以自底向上逐层应用。Vue 的核心库只关注视图层,不仅易于上手,还便于与第三方库或既有项目整合。另一方面,当与现代化的工具链以及各种支持类库结合使用时,Vue 也完全能够为复杂的单页应用提供驱动。

安装  起步

尝试 Vue.js 最简单的方法是使用 Hello World 例子。你可以在浏览器新标签页中打开它,跟着例子学习一些基础用法。或者你也可以创建一个 .html 文件,然后通过如下方式引入 Vue:


  
  1. <!-- 开发环境版本,包含了有帮助的命令行警告 -->
  2. <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>

或者:


  
  1. <!-- 生产环境版本,优化了尺寸和速度 -->
  2. <script src="https://cdn.jsdelivr.net/npm/vue"></script>

在案例讲解之前 先了解一下V-* 常用的指令

内置指令 | Vue.js

 

vue指令 常用到的一些指令

vue的常用指令及用法总结_沅霖的博客-CSDN博客_vue指令和用法
◼️ 什么是指令
专门在HTML中也能实现分支、循环等程序功能的特殊的自定义属性
◼️ 包括: 13种

  • v-bind

  • v-show

  • v-if 和 v-else

  • v-else-if

  • v-for

  • v-on

  • v-html

  • v-cloak和v-text

  • v-once:

  • v-pre

  • v-model

  • this判断—8种指向

  • 知识点提炼

  • v-bind

第一个Demo  如何在控制台中改变数据 原始的方案是在 html代码中改变数据的 


  
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document </title>
  8. </head>
  9. <style>
  10. div {
  11. width: 100%;
  12. background-color: rgb( 0, 0, 0);
  13. font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  14. font-size: 30px;
  15. text-align: center;
  16. color: red;
  17. }
  18. </style>
  19. <body>
  20. <div>
  21. 1234
  22. </div>
  23. </body>
  24. </html>

 CSS代码


  
  1. div {
  2. width: 100%;
  3. background-color: rgb( 248, 254, 254);
  4. font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  5. font-size: 30px;
  6. text-align: center;
  7. }
  8. #app {
  9. background-color: lightblue;
  10. height: 40px;
  11. line-height: 40px;
  12. color: red;
  13. font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  14. font-size: 20px;
  15. }
  16. .fist {
  17. background-color: bisque;
  18. color: red;
  19. height: 40px;
  20. line-height: 40px;
  21. }

引入文件  导入js中的文件信息

<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>

Html 的结构


  
  1. <body>
  2. <H1>我是Vue的学习 </H1>
  3. <div id="app">
  4. {{message}}
  5. </div>
  6. <div class="fist">
  7. 我是元素信息 &nbsp; &nbsp; &nbsp; &nbsp;{{a}} &nbsp; &nbsp; &nbsp; &nbsp;在中间输入内容
  8. </div>
  9. <!--导入Vue.Js文件-->
  10. <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"> </script>
  11. <script>
  12. //控制视图层
  13. var app = new Vue({
  14. el: '#app',
  15. data: {
  16. message: 'Hellow Vue 我是一个Vue对象模型'
  17. }
  18. })
  19. </script>
  20. <script>
  21. var message = new Vue({
  22. el: '.fist',
  23. data: {
  24. a: "我是啊元素"
  25. }
  26. })
  27. </script>

分析代码  Vue的功能是专心的关注视图层

 <div id="app">
     { { message}}
 </div>

 <!--导入Vue.Js文件-->
 <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></sc
 <script>
     //控制视图层
     var app = new Vue({

//你要选择的模块是那个
         el: '#app',

         data: {

//你要在自己选择的模块中实现的是什么功能
             message: 'Hellow Vue 我是一个Vue对象模型'
         }
     })

 </script>

什么是MVVM
     MVVM (Model-View-ViewModel) 是一种软件架构设计模式,由微软WPF (用于替代WinFo
     MVVM 源自于经典的MVC (ModI-View-Controller) 模式。MVVM的核心是ViewModel层,
     该层向上与视图层进行双向数据绑定
     向下与Model层通过接口请求进行数据交互

什么要使用MVVM

MVVM模式和MVC模式一样,主要目的是分离视图(View)和模型(Model),有几大好处:

低耦合:视图(View)可以独立于Model变化和修改,一个ViewMo为del可以绑定到不同的View上,当View变化的时候Model可以不变,当Model变化的时候View也可以不变。

可复用:你可以把一些视图逻辑放在一个ViewModel里面,让很多View重用这段视图逻辑。
独立开发:开发人员可以专注于业务逻辑和数据的开发(ViewModel),设计人员可以专注于页面设计。
可测试:界面素来是比较难于测试的,而现在测试可以针对ViewModel来写。

仔细观察哦我下面的操作
发现没有Vue是不是让我们之前写的标签与文本内容分开了呀

 

 

这又是Vue的好处他然我们前端开发专注在视图上

 

第二个Demo 

第一个指令:v-bind
​现在数据和DOM已经被建立了关联,所有的东西都是响应式的。我们在控制台操作对象的属性,界面可以实时更新。我们可以使用v-bind来绑定元素属性


  
  1. <!--
  2. * @Author: error: git config user.name && git config user.email & please set dead value or install git
  3. * @Date: 2022-11-06 13:35:06
  4. * @LastEditors: error: git config user.name && git config user.email & please set dead value or install git
  5. * @LastEditTime: 2022-11-06 20:43:26
  6. * @FilePath: \com.Html\Com.Vue\了解Vue\html\index2.html
  7. * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
  8. -->
  9. <!doctype html>
  10. <html lang="en" xmlns:v-bind="http://www.w3.org/1999/xhtml">
  11. <head>
  12. <meta charset="UTF-8">
  13. <meta name="viewport"
  14. content= "width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  15. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  16. <title>Document </title>
  17. </head>
  18. <!-- 外连接-->
  19. <style src="./index.css"> </style>
  20. <body>
  21. <style>
  22. div {
  23. width: 100%;
  24. background-color: rgb( 248, 254, 254);
  25. font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  26. font-size: 30px;
  27. }
  28. #app {
  29. background-color: lightblue;
  30. height: 40px;
  31. line-height: 40px;
  32. color: red;
  33. font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  34. font-size: 20px;
  35. }
  36. .fist {
  37. background-color: bisque;
  38. color: red;
  39. height: 40px;
  40. line-height: 40px;
  41. }
  42. </style>
  43. <!-- v-bind
  44. ​ 现在数据和DOM已经被建立了关联,所有的东西都是响应式的。我们在控制台操作对象的属性,界面可以实时更新。我们可以使用v-bind来绑定元素属性!-->
  45. <h1>v-bind
  46. ​ 现在数据和DOM已经被建立了关联,所有的东西都是响应式的。我们在控制台操作对象的属性,界面可以实时更新。我们可以使用v-bind来绑定元素属性! </h1>
  47. <div id="app">
  48. <h2 v-bind:title="message">鼠标的信息停止几分钟展示内容信息为Mouserover </h2>
  49. </div>
  50. <!--导入Vue.Js文件-->
  51. <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"> </script>
  52. <script>
  53. //控制视图层
  54. var app = new Vue({
  55. el: '#app',
  56. data: {
  57. //鼠标停止几秒后展示内容信息
  58. message: 'Hellow Vue 我是一个Vue对象模型'
  59. }
  60. })
  61. </script>
  62. </body>
  63. </html>
当开发者将绑定的信息停在文本上会展示内容

 

第三个Demo 循环 和条件 判断   第二个指令 V-if  V-else  V-for


  
  1. <!--
  2. * @Author: error: git config user.name && git config user.email & please set dead value or install git
  3. * @Date: 2022-11-06 13:35:15
  4. * @LastEditors: error: git config user.name && git config user.email & please set dead value or install git
  5. * @LastEditTime: 2022-11-06 20:43:30
  6. * @FilePath: \com.Html\Com.Vue\了解Vue\html\index3.html
  7. * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
  8. -->
  9. <!DOCTYPE html>
  10. <html lang="en">
  11. <head>
  12. <meta charset="UTF-8">
  13. <title>Title </title>
  14. </head>
  15. <style>
  16. div {
  17. width: 100%;
  18. background-color: rgb( 248, 254, 254);
  19. font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  20. font-size: 30px;
  21. }
  22. #app {
  23. background-color: lightblue;
  24. height: 40px;
  25. line-height: 40px;
  26. color: red;
  27. font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  28. font-size: 20px;
  29. }
  30. .fist {
  31. background-color: bisque;
  32. color: red;
  33. height: 40px;
  34. line-height: 40px;
  35. }
  36. </style>
  37. <!-- 外连接-->
  38. <style src="./index.css"> </style>
  39. <body>
  40. <h1>我是vue框架的小练习主要学习一下vue的基本操作if 语句 if Else for </h1>
  41. <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"> </script>
  42. <!--if else for语句-->
  43. <div id="app-3">
  44. <p v-if="seen">现在你看到我了 </p>
  45. </div>
  46. <div id="app">
  47. <h1 v-if="type==='A'">A </h1>
  48. <h1 v-if="type==='B'">B </h1>
  49. <h1 v-else-if="type==='C'">C </h1>
  50. <h1 v-else="type==='D'">D </h1>
  51. <h1 v-if="type==='E'">E </h1>
  52. </div>
  53. <script>
  54. //if语句
  55. var app3 = new Vue({
  56. el: '#app-3',
  57. data: {
  58. seen: true
  59. }
  60. })
  61. //if else语句
  62. var vm = new Vue({
  63. el: "#app",
  64. data: {
  65. type: "B"
  66. }
  67. })
  68. </script>
  69. <div id="app-4">
  70. <ol>
  71. <li v-for="todo in todos">
  72. {{todo.text}}
  73. </li>
  74. </ol>
  75. </div>
  76. <!-- for循环 -->
  77. <!-- app4.todos.push({ text: '新项目' }) 动态创建项目 -->
  78. <script>
  79. var app4 = new Vue({
  80. el: '#app-4',
  81. data: {
  82. todos: [
  83. { text: '学习 JavaScript' },
  84. { text: '学习 Vue' },
  85. { text: '整个牛项目' },
  86. { text: '项目实例' },
  87. { text: '我是数据利用vue创建的小demo' }
  88. ]
  89. }
  90. })
  91. </script>
  92. </body>
  93. </html>

 

 第四个Demo  V-on 指令是绑定事件的在jquery中学习和Dom事件操作中的所有事件都可以绑定 比如 鼠标的移入移出 单机 双击 

 <!-- V-on事件绑定 -->
 <!-- 为了让用户和你的应用进行交互,我们可以用 v-on 指令添加一个事件监听器,通过它调用在 Vue 实例中定义的方法: -->


  
  1. <!--
  2. * @Author: error: git config user.name && git config user.email & please set dead value or install git
  3. * @Date: 2022-11-06 13:35:39
  4. * @LastEditors: error: git config user.name && git config user.email & please set dead value or install git
  5. * @LastEditTime: 2022-11-06 20:46:25
  6. * @FilePath: \com.Html\Com.Vue\了解Vue\html\index4.html
  7. * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
  8. -->
  9. <!DOCTYPE html>
  10. <html lang="en">
  11. <head>
  12. <meta charset="UTF-8">
  13. <title>Title </title>
  14. <style>
  15. div {
  16. width: 100%;
  17. background-color: rgb( 248, 254, 254);
  18. font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  19. font-size: 30px;
  20. margin: auto;
  21. }
  22. #index4 {
  23. background-color: lightblue;
  24. height: 40px;
  25. line-height: 40px;
  26. color: red;
  27. font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  28. font-size: 20px;
  29. }
  30. button{
  31. margin-left: 20%;
  32. width: 300px;
  33. height: 40px;
  34. line-height: 40px;
  35. margin: auto;
  36. }
  37. </style>
  38. </head>
  39. <!-- 外连接-->
  40. <style src="./index.css"> </style>
  41. <body>
  42. <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"> </script>
  43. <!-- V-on事件绑定 -->
  44. <!-- 为了让用户和你的应用进行交互,我们可以用 v-on 指令添加一个事件监听器,通过它调用在 Vue 实例中定义的方法: -->
  45. <div id="index4">
  46. <button v-on:click="sayHi()">ClickMe点击我哦 </button>
  47. <button v-on:click="sayHi1()">点击这里告诉你答案 </button>
  48. </div>
  49. <script>
  50. var vm = new Vue({
  51. el: "#index4",
  52. data: {
  53. message: "你点击我干嘛呀"
  54. },
  55. methods: {
  56. // //方法必须绑定在Vue的Methods对象中,v-on:事件
  57. sayHi: ( function ( even) {
  58. alert( this. message)
  59. }),
  60. sayHi1: ( function ( ) {
  61. alert( "我爱上你了呀!在向你表白")
  62. alert( "你们男人真是的不懂得人间的浪漫")
  63. alert( "到了改离开的时候了")
  64. }),
  65. }
  66. })
  67. </script>
  68. </body>
  69. </html>

 

 

 

第五个Demo  双向绑定事件 

  


   
  1. <div id="index5">
  2.      请输入文本的信息: <input type="text" v-model="message" value="Hello Vue">{{message}}
  3.   </div>

   
  1. var vm = new Vue({
  2. el: "#index5",
  3. data: {
  4. message: ""
  5. }
  6. })

  
  1. <!--
  2. * @Author: error: git config user.name && git config user.email & please set dead value or install git
  3. * @Date: 2022-11-06 13:35:51
  4. * @LastEditors: error: git config user.name && git config user.email & please set dead value or install git
  5. * @LastEditTime: 2022-11-06 20:43:46
  6. * @FilePath: \com.Html\Com.Vue\了解Vue\html\index5.html
  7. * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AEbi
  8. -->
  9. <!DOCTYPE html>
  10. <html lang="en">
  11. <head>
  12. <meta charset="UTF-8">
  13. <title>Title </title>
  14. </head>
  15. <body>
  16. <style>
  17. div {
  18. width: 100%;
  19. background-color: rgb( 248, 254, 254);
  20. font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  21. font-size: 30px;
  22. }
  23. #app {
  24. background-color: lightblue;
  25. height: 40px;
  26. line-height: 40px;
  27. color: red;
  28. font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  29. font-size: 20px;
  30. }
  31. .fist {
  32. background-color: bisque;
  33. color: red;
  34. height: 40px;
  35. line-height: 40px;
  36. }
  37. </style>
  38. <!-- 外连接-->
  39. <style src="./index.css"> </style>
  40. <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"> </script>
  41. <!-- 表单的两个方向的绑定 -->
  42. <div id="index5">
  43. 请输入文本的信息: <input type="text" v-model="message" value="Hello Vue">{{message}}
  44. </div>
  45. <div id="index51">
  46. 多行文本的信息: <textarea v-model="pan"> </textarea> &nbsp; &nbsp; &nbsp; &nbsp;{{pan}}
  47. </div>
  48. <!-- 单选框 -->
  49. <div id="index52">
  50. <input type="checkbox" id="checkbox" v-model="checked">
  51. &nbsp; &nbsp;
  52. <label for="checkbox">{{checked}} </label>
  53. </div>
  54. <!-- 下拉单 -->
  55. 下拉单:
  56. <select name="" id="">
  57. <option value="" disabled>______________请选择信息_________________ </option>
  58. <option value="">ABCAA </option>
  59. <option value="">ABCAB </option>
  60. <option value="">ABCAC </option>
  61. <option value="">ABCAD </option>
  62. <option value="">ABCAE </option>
  63. <option value="">ABCAF </option>
  64. <option value="">ABCAG </option>
  65. <option value="">ABCAH </option>
  66. <option value="">ABCAI </option>
  67. <span>value{{pan}} </span>
  68. </select>
  69. <script>
  70. var vm = new Vue({
  71. el: "#index5",
  72. data: {
  73. message: ""
  74. }
  75. })
  76. var vm1 = new Vue({
  77. el: "#index51",
  78. data: {
  79. pan: ""
  80. }
  81. })
  82. </script>
  83. <script type="text/javascript">
  84. var vm = new Vue({
  85. el: "#index52",
  86. data: {
  87. checked: false
  88. }
  89. });
  90. </script>
  91. <!-- 多选框 -->
  92. <div id="index53">
  93. 多复选框:
  94. <input type="checkbox" id="jack" value="Jack" v-model="checkedNames">
  95. &nbsp; &nbsp;
  96. <label for="jack">JavaScript </label>
  97. <input type="checkbox" id="join" value="Join" v-model="checkedNames">
  98. &nbsp; &nbsp;
  99. <label for="join">Java </label>
  100. <input type="checkbox" id="mike" value="Mike" v-model="checkedNames">
  101. &nbsp; &nbsp;
  102. <label for="mike">MySql </label>
  103. <input type="checkbox" id="mikes" value="mikes" v-model="checkedNames">
  104. &nbsp; &nbsp;
  105. <label for="mike">Spring SpringMvc MyBatis </label>
  106. <input type="checkbox" id="mike2" value="Mike2" v-model="checkedNames">
  107. &nbsp; &nbsp;
  108. <label for="mike">SprngBoot </label>
  109. <input type="checkbox" id="mike3" value="Mike3" v-model="checkedNames">
  110. &nbsp; &nbsp;
  111. <label for="mike">HTML CSS JavaScript </label>
  112. <input type="checkbox" id="mike4" value="Mike4" v-model="checkedNames">
  113. &nbsp; &nbsp;
  114. <label for="mike">JSP </label>
  115. <input type="checkbox" id="mike5" value="Mike5" v-model="checkedNames">
  116. &nbsp; &nbsp;
  117. <label for="mike">Servlect </label>
  118. <span>选中的值:{{checkedNames}} </span>
  119. </div>
  120. <script type="text/javascript">
  121. var vm = new Vue({
  122. el: "#index53",
  123. data: {
  124. checkedNames: []
  125. }
  126. });
  127. </script>
  128. <script>
  129. var vm = new Vue({
  130. el: "#index53",
  131. data: {
  132. pan: "A"
  133. }
  134. })
  135. </script>
  136. </body>
  137. </html>

 

 第六个Demo

组件是可复用的Vue实例,说白了就是一组可以重复使用的模板,跟JSTL的自定义标签、Thymeleaf的th:fragment 等框架有着异曲同工之妙。通常一个应用会以一棵嵌套的组件树的形式来组织


  
  1. <!--
  2. * @Author: error: git config user.name && git config user.email & please set dead value or install git
  3. * @Date: 2022-11-06 14:56:25
  4. * @LastEditors: error: git config user.name && git config user.email & please set dead value or install git
  5. * @LastEditTime: 2022-11-06 20:43:50
  6. * @FilePath: \com.Html\Com.Vue\了解Vue\html\index6.html
  7. * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
  8. -->
  9. <!DOCTYPE html>
  10. <html lang="en">
  11. <head>
  12. <meta charset="UTF-8">
  13. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  14. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  15. <title>Document </title>
  16. </head>
  17. <style>
  18. div {
  19. width: 100%;
  20. background-color: rgb( 248, 254, 254);
  21. font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  22. font-size: 30px;
  23. }
  24. #app {
  25. background-color: lightblue;
  26. height: 40px;
  27. line-height: 40px;
  28. color: red;
  29. font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  30. font-size: 20px;
  31. }
  32. .fist {
  33. background-color: bisque;
  34. color: red;
  35. height: 40px;
  36. line-height: 40px;
  37. }
  38. </style>
  39. <body>
  40. <h3>​ 组件是可复用的Vue实例,说白了就是一组可以重复使用的模板,跟JSTL的自定义标签、Thymeleaf的th:fragment 等框架有着异曲同工之妙。通常一个应用会以一棵嵌套的组件树的形式来组织: </h3>
  41. <!--view层 模板-->
  42. <div id="app">
  43. <my v-for="item in items" v-bind:s="item"> </my>
  44. </div>
  45. </body>
  46. <!-- 外连接-->
  47. <style src="./index.css"> </style>
  48. <!--导入js-->
  49. <script src="https://cdn.jsdelivr.net/npm/vue@2.5.21/dist/vue.min.js"> </script>
  50. <script>
  51. Vue. component( "my", {
  52. props: [ 's'],
  53. template: '<li>{{s}}</li>'
  54. })
  55. var vm = new Vue({
  56. el: "#app",
  57. data: {
  58. items: [ 'Java', 'Python', 'Php', "Mysql", "我是数据信息"]
  59. }
  60. })
  61. </script>
  62. </body>
  63. </html>

 

标题

 

第七个Demo  axios  跟Ajax和JSON数据差不多 这个功能是和后端数据打交道的


  
  1. {
  2. "name": "weg",
  3. "age": "18",
  4. "sex": "男",
  5. "url": "https://www.baidu.com",
  6. "address": {
  7. "street": "文苑路",
  8. "city": "南京",
  9. "country": "中国"
  10. },
  11. "links": [
  12. {
  13. "name": "bilibili",
  14. "url": "https://www.bilibili.com"
  15. },
  16. {
  17. "name": "baidu",
  18. "url": "https://www.baidu.com"
  19. },
  20. {
  21. "name": "cqh video",
  22. "url": "https://www.4399.com"
  23. }
  24. ]
  25. }

  
  1. <!--
  2. * @Author: error: git config user.name && git config user.email & please set dead value or install git
  3. * @Date: 2022-11-06 15:44:33
  4. * @LastEditors: error: git config user.name && git config user.email & please set dead value or install git
  5. * @LastEditTime: 2022-11-06 20:43:55
  6. * @FilePath: \com.Html\Com.Vue\了解Vue\html\index7.html
  7. * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
  8. -->
  9. <!DOCTYPE html>
  10. <html lang="en">
  11. <head>
  12. <meta charset="UTF-8">
  13. <title>Title </title>
  14. </head>
  15. <body>
  16. <!--view层 模板-->
  17. <div id="vue">
  18. <div>{{info.name}} </div>
  19. <a v-bind:href="info.url">点我进入 </a>
  20. </div>
  21. </body>
  22. <style>
  23. div {
  24. width: 100%;
  25. background-color: rgb( 248, 254, 254);
  26. font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  27. font-size: 30px;
  28. }
  29. #app {
  30. background-color: lightblue;
  31. height: 40px;
  32. line-height: 40px;
  33. color: red;
  34. font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  35. font-size: 20px;
  36. }
  37. .fist {
  38. background-color: bisque;
  39. color: red;
  40. height: 40px;
  41. line-height: 40px;
  42. }
  43. </style>
  44. <!-- 外连接-->
  45. <style src="./index.css"> </style>
  46. <!--1.导入vue.js-->
  47. <script src="https://cdn.jsdelivr.net/npm/vue@2.5.21/dist/vue.min.js"> </script>
  48. <!--导入axios-->
  49. <script src="https://cdn.bootcdn.net/ajax/libs/axios/0.19.2/axios.min.js"> </script>
  50. <script>
  51. var vm = new Vue({
  52. el: "#vue",
  53. data: {
  54. items: [ 'Java', 'Python', 'Php']
  55. },
  56. //data:vm的属性
  57. //data():vm方法
  58. data( ) {
  59. return {
  60. //请求的返回参数,必须和json字符串一样
  61. info: {
  62. name: null,
  63. age: null,
  64. sex: null,
  65. url: null,
  66. address: {
  67. street: null,
  68. city: null,
  69. country: null
  70. }
  71. }
  72. }
  73. },
  74. //钩子函数,链式编程,ES6新特性
  75. mounted( ) {
  76. axios. get( "index.json"). then( res => ( this. info = res. data))
  77. }
  78. })
  79. </script>
  80. </html>

第八个Demo  
计算属性:methods,computed 方法名不能重名,重名字后,只会调用methods的方法


   
  1. <!--view层 模板-->
  2. <div id="app">
  3. <div>currentTime1: {{currentTime1()}} </div>
  4. <div>currentTime2: {{currentTime2}} </div>
  5. </div>
  6. </body>
  7. <!-- 外连接-->
  8. <style src="./index.css"> </style>
  9. <!--导入js-->
  10. <script src="https://cdn.jsdelivr.net/npm/vue@2.5.21/dist/vue.min.js"> </script>
  11. <script>
  12. var vm = new Vue({
  13. el: "#app",
  14. data: {
  15. message: "hello,world!"
  16. },
  17. methods: {
  18. currentTime1: function ( ) {
  19. return Date. now(); // 返回一个时间戳
  20. }
  21. },
  22. computed: {
  23. //计算属性:methods,computed 方法名不能重名,重名字后,只会调用methods的方法
  24. currentTime2: function ( ) {
  25. this. message;
  26. // 返回一个时间戳
  27. return Date. now();
  28. }
  29. }
  30. })
  31. </script>

 

第九个Demo  slot 插槽 这个组件要定义在前面不然出不来数据


  
  1. <!--
  2. * @Author: error: git config user.name && git config user.email & please set dead value or install git
  3. * @Date: 2022-11-06 16:19:10
  4. * @LastEditors: error: git config user.name && git config user.email & please set dead value or install git
  5. * @LastEditTime: 2022-11-06 20:44:09
  6. * @FilePath: \com.Html\Com.Vue\了解Vue\html\index9.html
  7. * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
  8. -->
  9. <!DOCTYPE html>
  10. <html lang="en">
  11. <head>
  12. <meta charset="UTF-8">
  13. </head>
  14. <body>
  15. <style>
  16. div {
  17. width: 100%;
  18. background-color: rgb( 248, 254, 254);
  19. font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  20. font-size: 30px;
  21. }
  22. #app {
  23. background-color: lightblue;
  24. height: 40px;
  25. line-height: 40px;
  26. color: red;
  27. font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  28. font-size: 20px;
  29. }
  30. .fist {
  31. background-color: bisque;
  32. color: red;
  33. height: 40px;
  34. line-height: 40px;
  35. }
  36. </style>
  37. <!-- 外连接-->
  38. <style src="./index.css"> </style>
  39. <div id="app">
  40. <todo>
  41. <todo-title slot="todo-title" v-bind:name="title"> </todo-title>
  42. <todo-items slot="todo-items" v-for="item in todoItems" v-bind:item="item"> </todo-items>
  43. </todo>
  44. </div>
  45. <!--1.导入vue.js-->
  46. <script src="https://cdn.jsdelivr.net/npm/vue@2.5.21/dist/vue.min.js"> </script>
  47. <script>
  48. //slot 插槽 这个组件要定义在前面不然出不来数据
  49. Vue. component( "todo", {
  50. template: '<div>\
  51. <slot name="todo-title"></slot>\
  52. <ul>\
  53. <slot name="todo-items"></slot>\
  54. </ul>\
  55. <div>'
  56. });
  57. Vue. component( "todo-title", {
  58. //属性
  59. props: [ 'name'],
  60. template: '<div>{{name}}</div>'
  61. });
  62. Vue. component( "todo-items", {
  63. props: [ 'item'],
  64. template: '<li>{{item}}</li>'
  65. });
  66. let vm = new Vue({
  67. el: "#app",
  68. data: {
  69. //标题
  70. title: "图书馆系列图书",
  71. //列表
  72. todoItems: [ '三国演义', '红楼梦', '西游记', '水浒传']
  73. }
  74. });
  75. </script>
  76. </body>
  77. </html>

 第十个Demo  自定义事件


  
  1. <!--
  2. * @Author: error: git config user.name && git config user.email & please set dead value or install git
  3. * @Date: 2022-11-06 16:48:16
  4. * @LastEditors: error: git config user.name && git config user.email & please set dead value or install git
  5. * @LastEditTime: 2022-11-06 20:44:16
  6. * @FilePath: \com.Html\Com.Vue\了解Vue\html\index10.html
  7. * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
  8. -->
  9. <!DOCTYPE html>
  10. <html lang="en">
  11. <head>
  12. <meta charset="UTF-8">
  13. <title>P12-自定义事件内容分发 </title>
  14. </head>
  15. <body>
  16. <style>
  17. div {
  18. width: 100%;
  19. background-color: rgb( 248, 254, 254);
  20. font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  21. font-size: 30px;
  22. }
  23. #app {
  24. background-color: lightblue;
  25. height: 40px;
  26. line-height: 40px;
  27. color: red;
  28. font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  29. font-size: 20px;
  30. }
  31. .fist {
  32. background-color: bisque;
  33. color: red;
  34. height: 40px;
  35. line-height: 40px;
  36. }
  37. </style>
  38. <!-- 外连接-->
  39. <style src="./index.css"> </style>
  40. <div id="app">
  41. <todo>
  42. <todo-title slot="todo-title" :title="myTitle"> </todo-title>
  43. <todo-items slot="todo-items" v-for="(it,id) in todoItems" :item="it" v-bind:index="id"
  44. v-on:myremove= "removeItems(id)" :key= "id"> </todo-items>
  45. </todo>
  46. </div>
  47. <script src="https://cdn.jsdelivr.net/npm/vue@2.6.14/dist/vue.js"> </script>
  48. <script>
  49. Vue. component(
  50. "todo",
  51. {
  52. template: "<div>\
  53. <slot name='todo-title'></slot>\
  54. <ul>\
  55. <slot name='todo-items'></slot>\
  56. </ul>\
  57. </div>"
  58. }
  59. );
  60. Vue. component(
  61. "todo-title",
  62. {
  63. props: [ "title"],
  64. template: "<div>{{title}}</div>"
  65. }
  66. );
  67. Vue. component(
  68. "todo-items",
  69. {
  70. props: [ "item", "index"],
  71. template: "<li>{{index}}--{{item}}<button @click='remove'>删除</button></li>",
  72. methods: {
  73. remove: function ( index) {
  74. // alert("111");
  75. this.$emit( "myremove", index); //自定义事件分发
  76. }
  77. }
  78. }
  79. );
  80. var vm = new Vue({
  81. el: "#app",
  82. data: {
  83. myTitle: "yubaby的列表",
  84. todoItems: [ "yppah学java", "yppah学linux", "yppah学vue", "Mysql", "javaScript"]
  85. },
  86. methods: {
  87. removeItems: function ( index) {
  88. console. log( "删除了:" + this. todoItems[index]);
  89. this. todoItems. splice(index, 1); //一次删除一个元素
  90. }
  91. }
  92. });
  93. </script>
  94. </body>
  95. </html>

 

 


转载:https://blog.csdn.net/qq_56248592/article/details/127721032
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场