Vue (读音 /vju?/,类似于 view) 是一套用于构建用户界面的渐进式 JavaScript框架。
什么是渐进式
框架呢?
目前前端最流行的是三大框架:Vue、React、Angular。
当然,我不会去给出我的结论:
但是,我们从现实的角度,分析一下,学习哪一门语言更容易找到工作?
那么,就前端来说,学习了HTML、CSS、JavaScript,哪一个框架更容易找到工作?
如果去国外找工作,优先推荐React
、其次是Vue和Angular;
如果在国内找工作,优先推荐、必须学习Vue,其次是React,其次是Angular;
在2020年的9月19日,万众期待的Vue3终于发布了正式版,命名为“One Piece”。
那么现在是否是学习vue3的时间呢?
AntDesignVue
、Element-Plus
都提供了对Vue3的支持,所以很多公司目前新的项目都已经在使用Vue3来进行开发了。Vue的本质,就是一个JavaScript的库:
那么安装和使用Vue这个JavaScript库有哪些方式呢?
Vue的CDN引入:
<script src="https://unpkg.com/vue@next"></script>
Hello Vue案例的实现:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div id="app"></div>
<script src="https://unpkg.com/vue@next"></script>
<script>
const app = Vue.createApp({
template: '<h1>hello world</h1>'
})
app.mount('#app')
</script>
</body>
</html>
3.方式二:下载和引入
下载Vue的源码,可以直接打开CDN的链接:
通过script标签,引入刚才的文件:
<script src="./lib/vue.js"></script>
你好啊,Vue3,案例的实现:
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div id="app"></div>
<script src="./lib/vue.js"></script>
<script>
// 1.创建app
const app = Vue.createApp({
template: `<h1>Hello Vue</h1>`
})
// 2.挂载app
app.mount("#app")
</script>
</body>
</html>
案例体验一:动态展示Hello World数据
案例体验二:展示列表的数据
案例体验三:计数器功能实现
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div id="app"></div>
<script src="./lib/vue.js"></script>
<script>
const app = Vue.createApp({
// 插值语法: {{title}}
template: `<h2>{{message}}</h2>`,
data: function() {
return {
title: "Hello World",
message: "你好啊, Vue3"
}
}
})
app.mount("#app")
</script>
</body>
</html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div id="app"></div>
<script src="./lib/vue.js"></script>
<script>
const app = Vue.createApp({
template: `
<h2>电影列表</h2>
<ul>
<li v-for="item in movies">{{item}}</li>
</ul>
`,
data: function() {
return {
message: "你好啊, 李银河",
movies: [ "大话西游", "星际穿越", "盗梦空间", "少年派", "飞驰人生" ]
}
}
})
app.mount("#app")
</script>
</body>
</html>
如果我们希望实现一个计数器的案例:
我们可以选择很多种方式来实现:
原生
和Vue
的实现方式的不同。原生实现:
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h2>当前计数: <span class="counter"></span></h2>
<button class="add">+1</button>
<button class="sub">-1</button>
<script>
// 1.获取dom
const h2El = document.querySelector("h2")
const counterEl = document.querySelector(".counter")
const addBtnEl = document.querySelector(".add")
const subBtnEl = document.querySelector(".sub")
// 2.定义一个变量记录数据
let counter = 100
counterEl.textContent = counter
// 2.监听按钮的点击
addBtnEl.onclick = function() {
counter++
counterEl.textContent = counter
}
subBtnEl.onclick = function() {
counter--
counterEl.textContent = counter
}
</script>
</body>
</html>
Vue实现:
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div id="app"></div>
<script src="./lib/vue.js"></script>
<script>
const app = Vue.createApp({
template: `
<h2>当前计数: {{counter}}</h2>
<button @click="increment">+1</button>
<button @click="decrement">-1</button>
`,
data: function() {
return {
counter: 0
}
},
methods: {
increment: function() {
this.counter++
},
decrement: function() {
this.counter--
}
}
})
app.mount("#app")
</script>
</body>
</html>
Vue实现(重构)
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div id="app">
<h2>当前计数: {{counter}}</h2>
<button @click="increment">+1</button>
<button @click="decrement">-1</button>
</div>
<script src="./lib/vue.js"></script>
<script>
const app = Vue.createApp({
data: function() {
return {
counter: 0
}
},
methods: {
increment: function() {
this.counter++
},
decrement: function() {
this.counter--
}
}
})
app.mount("#app")
</script>
</body>
</html>
原生开发和Vue开发的模式和特点,我们会发现是完全不同的,这里其实涉及到两种不同的编程范式:
命令式
编程和声明式
编程;在原生的实现过程中,我们是如何操作的呢?
在Vue的实现过程中,我们是如何操作的呢?
MVC和MVVM都是一种软件的体系结构
通常情况下,我们也经常称Vue是一个MVVM的框架。
没有完全遵守MVVM的模型
,但是整个设计是受到它的启发的。data属性是传入一个函数,并且该函数需要返回一个对象:
data中返回的对象会被Vue的响应式系统劫持
,之后对该对象的修改
或者访问
都会在劫持中被处理:
也会发生改变
;具体这种响应式
的原理,我们后面会有专门的篇幅来讲解。
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div id="app">
<h2>{{message}}</h2>
<button @click="changeMessage">改变message</button>
</div>
<script src="./lib/vue.js"></script>
<script>
debugger
const app = Vue.createApp({
// data: option api
data: function() {
return {
message: "Hello Data"
}
},
// methods: option api
methods: {
changeMessage: function() {
this.message = "你好, 师姐!"
}
}
})
app.mount("#app")
</script>
</body>
</html>
methods属性是一个对象,通常我们会在这个对象中定义很多的方法:
this
关键字来直接访问到data中返回的对象的属性;对于有经验的同学,在这里我提一个问题,官方文档有这么一段描述:
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div id="app">
<h2>当前计数: {{counter}}</h2>
<button @click="increment">+1</button>
</div>
<script src="./lib/vue.js"></script>
<script>
console.log(this)
const app = Vue.createApp({
data: function() {
return {
counter: 0
}
},
// methods: option api
methods: {
increment: function() {
this.counter++
},
// 强调: methods中函数不能写成箭头函数
// increment: () => {
// console.log(this)
// }
}
})
app.mount("#app")
</script>
</body>
</html>
我们在methods中要使用data返回对象中的数据:
那么我们这个this能不能是window呢?
为什么是window呢?
事实上Vue的源码当中就是对methods中的所有函数进行了遍历,并且通过bind绑定了this: