当前位置:   article > 正文

速成版-带您2天学完vue3框架+Element-plus框架_vue+element-plus

vue+element-plus

Vue是渐进式的JavaScript框架,易学易用,性能出色,适用场景丰富的web前端框架,vue算是目前最火的web前端框架之一,使用vue可以提升开发体验。Vue组件可以按照两种不同的风格写,即选项式api和组合式api两种。

目录

一、vue开发准备

1.1、安装vscode和node

1.2、安装cli工具与创建vue项目​​​​​​​

1.3、创建一个vue项目(最新)

1.4、Vue项目的目录结构

 二、vue基础

2.1、模板语法

2.2、属性绑定

2.3、条件渲染

2.4、列表渲染

2.5、通过key管理状态

 2.6、事件处理

2.7、数组变化的侦测

2.8、计算属性 

2.9、Class绑定

2.10、Style绑定

2.11、侦听器

2.12、表单输入绑定

2.13、模板引用

三、深入组件

3.1、组件组成

3.2、组件嵌套关系

3.3、组件注册方式

3.4、组件传递数据

3.5、组件传递props检验

3.6、组件事件

3.7、组件事件+v-model

3.8、组件数据传递

3.9、插槽Slots

3.10、组件生命周期

3.11、组件生命周期应用

3.12、动态组件

3.13、组件保持存活

3.14、异步组件

3.15、Vue应用

四、第三方应用

4.1、Axios网络应用

4.2、Vue引入路配置

4.3、路由传递参数

五、Vue3新特性

5.1、vue3新特性1

5.2、vue3新特性2

六、ElementUI

6.1、vue3加载Element-plus


一、vue开发准备

1.1、安装vscode和node

我用的mac本,具体安装很简单,直接官网下载,然后下一步就行,直至安装成功。

1.2、安装cli工具与创建vue项目

vuecli是快速进行vue.js开发的标准工具,是一个基于vue.js开发的完整系统,用来快速创建vue的开发环境。

可以在命令行使用以下命令进行安装cli工具,不过需要先安装npm和cnpm才行,具体方法自行搜索,安装完成后使用该命令安装cli工具。

 安装成功,如下所示。

使用下面指令创建一个名为vue-demo的vue项目。

vue create vue-demo

然后,使用cd命令切换到当前目录,并使用npm命令启动项目。

浏览器输入,如下表示启动项目成功。

1.3、创建一个vue项目(最新)

命令终端输入npm init vue@latest创建vue,提示信息都选N。

然后使用npm install安装项目支持的依赖文件,并使用npm run dev运行项目,看到如下页面表示项目运行成功。

1.4、Vue项目的目录结构

 vue项目的目录结构如下所示,我们最关心的是src目录,后期的代码都是写在src目录下,当然其他目录结构用到的时候继续解释吧。

 二、vue基础

2.1、模板语法

Vue 使用一种基于 HTML 的模板语法,使我们能够声明式地将其组件实例的数据绑定到呈现的 DOM 上。所有的 Vue 模板都是语法层面合法的 HTML,可以被符合规范的浏览器和 HTML 解析器解析。

在底层机制中,Vue 会将模板编译成高度优化的 JavaScript 代码。结合响应式系统,当应用状态变更时,Vue 能够智能地推导出需要重新渲染的组件的最少数量,并应用最少的 DOM 操作。

如果你对虚拟 DOM 的概念比较熟悉,并且偏好直接使用 JavaScript,你也可以结合可选的 JSX 支持直接手写渲染函数而不采用模板。但请注意,这将不会享受到和模板同等级别的编译时优化。

我们看一下模板语法,每个绑定仅支持单一表达式,也就是一段能够被求值的js代码,一个简单的判断方法是是否可以合法。

2.2、属性绑定

vue可以使用v-bind:指令进行动态绑定,当然也可以省略,直接使用:进行属性绑定,可以绑定单一属性,也可以同时绑定多个属性。

  1. <template>
  2. <h2>我们一起学习属性绑定吧</h2>
  3. <div v-bind:id="dynamicId" :class="dynamicClass">单一属性绑定</div>
  4. <button :disabled="isDisabled">点击一下</button>
  5. <div :id="objectArr">多个属性绑定</div>
  6. </template>
  7. <script >
  8. export default{
  9. data(){
  10. return{
  11. dynamicId : "appId",
  12. dynamicClass : "appClass",
  13. isDisabled : false,
  14. objectArr:{
  15. dynamicId : "appId",
  16. dynamicClass : "appClass"
  17. }
  18. }
  19. }
  20. }
  21. </script>
  22. <style>
  23. .appClass{
  24. color: rebeccapurple;
  25. }
  26. </style>

2.3、条件渲染

条件渲染的标签主要有v-if,v-else,v-else-if,v-show等,其实v-show和v-if的功能类似,都是控制标签是否显示,v-if有较高的切换开销,在切换时,条件区块内的时间监听器和子组件都会被销毁和重建,v-show只有css的display属性会被切换。

  1. <template>
  2. <h2>我们一起学习条件渲染吧</h2>
  3. <div v-if="flag">当flag为true的时候您能看到我</div>
  4. <div v-else>当flag为false的时候您能看到我</div>
  5. <div v-if="type == 'A'">A</div>
  6. <div v-else-if="type == 'B'">B</div>
  7. <div v-else>not A/B</div>
  8. </template>
  9. <script >
  10. export default{
  11. data(){
  12. return{
  13. flag : true,
  14. type : "D"
  15. }
  16. }
  17. }
  18. </script>

2.4、列表渲染

使用v-for可以进行列表渲染,其中使用in或者of 从迭代对象中取值,对于数组一般有item和index,对于对象列表,一般有value,key,item三个。

  1. <template>
  2. <h2>我们一起学习列表渲染吧</h2>
  3. <p v-for="(item, index) in names">{{ index }} - {{ item }}</p>
  4. <div v-for="item in results">
  5. <p>{{ item.title }}</p>
  6. <img :src="avator" alt="">
  7. </div>
  8. <div>
  9. <p v-for="(value, key, index) in userInfo">{{ index }} - {{ key }} : {{ value }}</p>
  10. </div>
  11. </template>
  12. <script >
  13. export default{
  14. data(){
  15. return{
  16. names :["北京大学","清华大学","南京大学"],
  17. results:[
  18. {
  19. "id":1,
  20. "title":"北京",
  21. "avator":"https://www.baidu.com"
  22. },
  23. {
  24. "id":2,
  25. "title":"南京",
  26. "avator":"https://www.baidu.com"
  27. }
  28. ],
  29. userInfo:{
  30. username : "wang",
  31. password : "123"
  32. }
  33. }
  34. }
  35. }
  36. </script>

2.5、通过key管理状态

Vue 默认按照就地更新的策略来通过v-for渲染列表元素,当数据项的顺序发生改变时,Vue不会随之移动DOM元素的顺序,而是就地更新每个元素,确保他们在指定的索引位置上渲染,一般我们需要给Vue一个提示,即提供一个key属性(id),用来跟踪每个节点的标识,减少对现有元素重排序的开销。

  1. <template>
  2. <h2>我们一起学习列表渲染吧</h2>
  3. <p v-for="(item, index) in names">{{ index }} - {{ item }}</p>
  4. <div v-for="item in results" :key="item.id">
  5. <p>{{ item.title }}</p>
  6. <img :src="avator" alt="">
  7. </div>
  8. <div>
  9. <p v-for="(value, key, index) in userInfo">{{ index }} - {{ key }} : {{ value }}</p>
  10. </div>
  11. </template>
  12. <script >
  13. export default{
  14. data(){
  15. return{
  16. names :["北京大学","清华大学","南京大学"],
  17. results:[
  18. {
  19. "id":1,
  20. "title":"北京",
  21. "avator":"https://www.baidu.com"
  22. },
  23. {
  24. "id":2,
  25. "title":"南京",
  26. "avator":"https://www.baidu.com"
  27. }
  28. ],
  29. userInfo:{
  30. username : "wang",
  31. password : "123"
  32. }
  33. }
  34. }
  35. }
  36. </script>

 2.6、事件处理

事件处理器包括内联事件处理器和方法事件处理器,常用的是方法事件处理器,v-on绑定就事件,调用方法里面的逻辑进行处理事件响应。

  1. <template>
  2. <h2>我们一起学习事件处理吧</h2>
  3. <button @click="add"> 点击一下</button>
  4. <p>{{ count }}</p>
  5. </template>
  6. <script >
  7. export default{
  8. data(){
  9. return{
  10. count:0
  11. }
  12. },
  13. methods:{
  14. add(){
  15. this.count ++ ;
  16. }
  17. }
  18. }
  19. </script>

上面是没有参数传递的案例,下面我们看一下事件传参的具体案例。

  1. <template>
  2. <h2>我们一起学习事件处理吧</h2>
  3. <p @click="add(item, $event)" v-for="(item, index) in lists"> {{ index }} - {{ item }}</p>
  4. </template>
  5. <script >
  6. export default{
  7. data(){
  8. return{
  9. lists: ["1","2","3"] ,
  10. count:0
  11. }
  12. },
  13. methods:{
  14. add(x, y){
  15. alert(x) ;
  16. alert(y) ;
  17. }
  18. }
  19. }
  20. </script>

下面我们看一下事件修饰符,在处理事件调用的时候,为了使得方法内部更专注于处理数据逻辑而不是处理dom事件细节会更好一些,为了解决这一问题,Vue为v-on事件提供了事件修饰符,常见的有.stop .prevent .once .enter等。

  1. <template>
  2. <h2>我们一起学习事件处理吧</h2>
  3. <a @click.prevent="clickHandler" href="https://www.baidu.com">百度一下</a>
  4. </template>
  5. <script >
  6. export default{
  7. data(){
  8. return{
  9. }
  10. },
  11. methods:{
  12. clickHandler(){
  13. //事件处理
  14. console.log("点击了") ;
  15. }
  16. }
  17. }
  18. </script>

2.7、数组变化的侦测

Vue能够监听响应式数组的变更,包括变更方法和替换方法两种,常见的变更方法有:push、pop、shift、unshift、splice、sort、reverse等。常见的替换方法有:filter、concat、slice等

下面看个案例。

  1. <template>
  2. <h2>数组变化侦听</h2>
  3. <button @click ="clickHandler" >添加数据</button>
  4. <ul>
  5. <li v-for="(item, index) in names" :key="index">{{ index}} - {{ item }}</li>
  6. </ul>
  7. </template>
  8. <script >
  9. export default{
  10. data(){
  11. return{
  12. names:["wang","li","zhang "]
  13. }
  14. },
  15. methods:{
  16. clickHandler(){
  17. //变更
  18. //this.names.push("liu") ;
  19. //替换
  20. this.names = this.names.concat(["liu"]);
  21. }
  22. }
  23. }
  24. </script>

2.8、计算属性 

为了使模板变得更加简洁,一般使用计算属性来描述依赖响应式状态的复杂逻辑。

  1. <template>
  2. <h2>计算属性</h2>
  3. <button @click ="clickHandler" >添加数据</button>
  4. <ul>
  5. <li v-for="(item, index) in names" :key="index">{{ index}} - {{ item }}</li>
  6. </ul>
  7. <p>{{ compute }}</p>
  8. </template>
  9. <script >
  10. export default{
  11. data(){
  12. return{
  13. names:["wang","li","zhang "]
  14. }
  15. },computed:{
  16. compute(){
  17. return this.names.length > 0 ? "Yes" : "No" ;
  18. }
  19. },
  20. methods:{
  21. clickHandler(){
  22. //变更
  23. //this.names.push("liu") ;
  24. //替换
  25. this.names = this.names.concat(["liu"]);
  26. }
  27. }
  28. }
  29. </script>

2.9、Class绑定

class绑定可以绑定数组和对象,vue为class的v-bind做了功能增强,不仅可以绑定字符串,数组和对象也可以。如下:

  1. <template>
  2. <h2>class绑定</h2>
  3. <p :class="{'active':isActive,'text-danger':hasError}">class样式绑定 </p>
  4. <p :class="classObject">class样式绑定2</p>
  5. <p :class="[arrActive,arrHasError]">class样式绑定3</p>
  6. <p :class="[isActive ? 'active text-danger' : '']">class样式绑定4</p>
  7. </template>
  8. <script >
  9. export default{
  10. data(){
  11. return{
  12. isActive:true,
  13. hasError:true,
  14. classObject:{
  15. 'active':true,
  16. 'text-danger':true
  17. },
  18. arrActive:"active",
  19. arrHasError:"text-danger"
  20. }
  21. }
  22. }
  23. </script>
  24. <style>
  25. .active{
  26. color: rebeccapurple;
  27. }
  28. .text-danger{
  29. font-size: 30px;
  30. }
  31. </style>

2.10、Style绑定

vue除了为class提供了专门的功能增强,也为style提供了专门的功能增强,v-bind除了可以绑定字符串之外,还可以绑定对象和数组。

  1. <template>
  2. <h2>style绑定</h2>
  3. <p :style="{color:activeColor, fontSize:fontSize}">style绑定1</p>
  4. <p :style="styleObject">style绑定2</p>
  5. </template>
  6. <script >
  7. import { resolveDirective } from 'vue';
  8. export default{
  9. data(){
  10. return{
  11. activeColor:"red",
  12. fontSize:"30px",
  13. styleObject:{
  14. color:"red",
  15. fontSize:"30px"
  16. }
  17. }
  18. }
  19. }
  20. </script>
  21. <style>
  22. .active{
  23. color: rebeccapurple;
  24. }
  25. .text-danger{
  26. font-size: 30px;
  27. }
  28. </style>

2.11、侦听器

通过侦听器可以侦听数据的变化,可以使用watch属性在每次响应式属性发生变化时触发一个函数。

  1. <template>
  2. <h2>侦听器</h2>
  3. <p>{{ message }}</p>
  4. <button @click="updateHandler">修改数据</button>
  5. </template>
  6. <script >
  7. import { resolveDirective } from 'vue';
  8. export default{
  9. data(){
  10. return{
  11. message : "hello"
  12. }
  13. },
  14. methods:{
  15. updateHandler(){
  16. this.message = "hi" ;
  17. }
  18. },
  19. watch:{
  20. message(newValue, oldValue){
  21. console.log(newValue, oldValue) ;
  22. }
  23. }
  24. }
  25. </script>

2.12、表单输入绑定

表单输入绑定一帮使用v-model指令,可以实现实时获取最新数据,另外可以使用.lazy为表单输入添加惰性属性。

  1. <template>
  2. <h2>表单输入绑定</h2>
  3. <form>
  4. <input type="text" v-model="message">
  5. <p>{{ message }}</p>
  6. <input type="checkbox" id="checkbox" v-model="checked">
  7. <label>{{ checked }}</label>
  8. </form>
  9. </template>
  10. <script >
  11. import { resolveDirective } from 'vue';
  12. export default{
  13. data(){
  14. return{
  15. message : "",
  16. checked:false
  17. }
  18. }
  19. }
  20. </script>

2.13、模板引用

所谓的模板引用就是获取dom元素,一般情况下,不需要获取dom元素就可以完成响应的操作,但是有些情况我们需要获取dom元素,在methods中使用this.$refs就可以获取。

三、深入组件

3.1、组件组成

一般来说,组件的使用包含三步:引入组件、注入组件,显示组件。每个组件有模板、逻辑和样式三部分组成。使用style的scoped属性可以限定作用范围为该组件,而不是全局有效。

定义组件:
 

  1. <template>
  2. <h2>我的组件</h2>
  3. <div class="container">{{ message }}</div>
  4. </template>
  5. <script>
  6. export default{
  7. data(){
  8. return {
  9. message:"组件基础"
  10. }
  11. }
  12. }
  13. </script>
  14. <style scoped>
  15. .container{
  16. font-size: 30px;
  17. color: red;
  18. }
  19. </style>

组件引入:
​​​​​​​

  1. <template>
  2. <!--显示组件-->
  3. <MyComponent/>
  4. </template>
  5. <script >
  6. //1、引入组件
  7. import MyComponent from "./components/MyComponents.vue"
  8. export default{
  9. //2.注入组件
  10. components:{
  11. MyComponent
  12. }
  13. }
  14. </script>
  15. <style>
  16. </style>

3.2、组件嵌套关系

组件允许我们将 UI 划分为独立的、可重用的部分,并且可以对每个部分进行单独的思考。在实际应用中,组件常常被组织成层层嵌套的树状结构。

下面我们定义一些组件实现上述的树状嵌套关系,如下:

 

App.vue:嵌入了Header、Main、Aside三个组件。

  1. <template>
  2. <!--显示组件-->
  3. <Header/>
  4. <Main/>
  5. <Aside/>
  6. </template>
  7. <script >
  8. //1、引入组件
  9. import Header from "./papers/Header.vue"
  10. import Main from "./papers/Main.vue"
  11. import Aside from "./papers/Aside.vue"
  12. export default{
  13. //2.注入组件
  14. components:{
  15. Header,
  16. Main,
  17. Aside
  18. }
  19. }
  20. </script>
  21. <style>
  22. </style>

Header.vue:

  1. <template>
  2. <h3>Header</h3>
  3. </template>
  4. <script>
  5. </script>
  6. <style scoped>
  7. h3{
  8. width: 100%;
  9. height: 100px;
  10. border: 5px solid #999 ;
  11. text-align: center;
  12. line-height: 100px;
  13. box-sizing: border-box;
  14. }
  15. </style>

Main.vue:嵌套2个Article

  1. <template>
  2. <div class="main">
  3. <h3>Main</h3>
  4. <Article/>
  5. <Article/>
  6. </div>
  7. </template>
  8. <script>
  9. import Article from "./Article.vue"
  10. export default{
  11. components:{
  12. Article
  13. }
  14. }
  15. </script>
  16. <style scoped>
  17. .main{
  18. float: left;
  19. width: 70%;
  20. height: 400px;
  21. border: 5px solid #999 ;
  22. box-sizing: border-box;
  23. }
  24. </style>

Aside.vue:嵌套三个Item

  1. <template>
  2. <div class="aside">
  3. <h3>Aside</h3>
  4. <Item/>
  5. <Item/>
  6. <Item/>
  7. </div>
  8. </template>
  9. <script>
  10. import Item from "./Item.vue"
  11. export default{
  12. components:{
  13. Item
  14. }
  15. }
  16. </script>
  17. <style scoped>
  18. .aside{
  19. float: right;
  20. width: 30%;
  21. height: 400px;
  22. border: 5px solid #999 ;
  23. box-sizing: border-box;
  24. }
  25. </style>

Article.vue:

  1. <template>
  2. <h3>Article</h3>
  3. </template>
  4. <script>
  5. </script>
  6. <style scoped>
  7. h3{
  8. width: 80%;
  9. margin: 0 auto;;
  10. text-align: center;
  11. line-height: 50px;
  12. box-sizing: border-box;
  13. margin-top: 50px;
  14. background: #999;
  15. }
  16. </style>

Item.vue:

  1. <template>
  2. <h3>Item</h3>
  3. </template>
  4. <script>
  5. </script>
  6. <style scoped>
  7. h3{
  8. width: 80%;
  9. margin: 0 auto;;
  10. text-align: center;
  11. line-height: 100px;
  12. box-sizing: border-box;
  13. margin-top: 10px;
  14. background: #999;
  15. }
  16. </style>

3.3、组件注册方式

组件的注册分为全局注册和局部注册,之前用的都是局部注册,下面我们看看全局注册,在main.js文件中进行全局注册。

  1. import { createApp } from 'vue'
  2. import App from './App.vue'
  3. import Header from "./papers/Header.vue"
  4. const app = createApp(App) ;
  5. //全局注册
  6. app.component("Header",Header)
  7. app.mount('#app');

3.4、组件传递数据

App.vue:爷爷类

  1. <template>
  2. <!--显示组件-->
  3. <Parent/>
  4. </template>
  5. <script >
  6. //1、引入组件
  7. import Parent from "./components/Parent.vue"
  8. export default{
  9. //2.注入组件
  10. components:{
  11. Parent
  12. }
  13. }
  14. </script>
  15. <style>
  16. </style>

Parent.vue:父亲类

  1. <template>
  2. <h3>Parent </h3>
  3. <Child :title="message"/>
  4. </template>
  5. <script>
  6. import Child from "./Child.vue"
  7. export default{
  8. data(){
  9. return{
  10. message : "parent数据!"
  11. }
  12. },
  13. components:{
  14. Child
  15. }
  16. }
  17. </script>

Child.vue:儿子类

  1. <template>
  2. <h3>Child</h3>
  3. <p>{{ title }}</p>
  4. </template>
  5. <script>
  6. export default{
  7. data(){
  8. return{
  9. }
  10. },
  11. props:["title"]
  12. }
  13. </script>

其实props能接收任何数据类型的传递,允许父组件向子组件传递数据,看下面的案例。

  1. <template>
  2. <h3>Parent </h3>
  3. <Child :title="message" :age="age" :names="names" :userInfo="userInfo"/>
  4. </template>
  5. <script>
  6. import Child from "./Child.vue"
  7. export default{
  8. data(){
  9. return{
  10. message : "parent数据!",
  11. age : 20,
  12. names :["wang","lu","li"],
  13. userInfo:{
  14. name:"liu",
  15. age:30
  16. }
  17. }
  18. },
  19. components:{
  20. Child
  21. }
  22. }
  23. </script>
  1. <template>
  2. <h3>Child</h3>
  3. <p>{{ title }}</p>
  4. <p>{{ age }}</p>
  5. <ul>
  6. <li v-for="(item, index) in names" :key="index">{{ index }} - {{ item }}</li>
  7. </ul>
  8. <p>{{ userInfo.name}}</p>
  9. <p>{{ userInfo.age }}</p>
  10. </template>
  11. <script>
  12. export default{
  13. data(){
  14. return{
  15. }
  16. },
  17. props:["title","age","names","userInfo"]
  18. }
  19. </script>

3.5、组件传递props检验

父类通过props给子类传递数据,可以做数据类型的校验,也可以设置默认值和是否必须传数据等。

  1. <template>
  2. <h3>Parent </h3>
  3. <Child :title="message" />
  4. </template>
  5. <script>
  6. import Child from "./Child.vue"
  7. export default{
  8. data(){
  9. return{
  10. message : "parent数据!"
  11. }
  12. },
  13. components:{
  14. Child
  15. }
  16. }
  17. </script>
  1. <template>
  2. <h3>Child</h3>
  3. <p>{{ title }}</p>
  4. <p>{{ age }}</p>
  5. <p>{{ names }}</p>
  6. </template>
  7. <script>
  8. export default{
  9. data(){
  10. return{
  11. }
  12. },
  13. props:{
  14. //数据类型的校验
  15. title:{
  16. type:[String,Number,Object,Array]
  17. },age:{
  18. type:Number,
  19. //如果父没给子传值,就默认为0
  20. default:0,
  21. //标识为必传项
  22. required: true
  23. },names:{
  24. //对于数组和对象的默认值,需要使用工厂函数进行设置
  25. type:Array,
  26. default(){
  27. return ["空值1","空值2"]
  28. }
  29. }
  30. }
  31. }
  32. </script>

3.6、组件事件

组件事件用来做组件之间的数据传递的,在组件的模板表达式中,可以使用$emit方法来触发自定义事件。这里是用来子传父。父传子:props,子传父:this.$emit

Parent.vue:
​​​​​​​

  1. <template>
  2. <h3>组件事件 </h3>
  3. <Child @someEvent = "getHandle"/>
  4. {{ message }}
  5. </template>
  6. <script>
  7. import Child from "./Child.vue"
  8. export default{
  9. data(){
  10. return{
  11. message : ""
  12. }
  13. },
  14. components:{
  15. Child
  16. },
  17. methods:{
  18. getHandle(data){
  19. this.message = data ;
  20. }
  21. }
  22. }
  23. </script>

Child.vue:

  1. <template>
  2. <h3>Child</h3>
  3. <button @click="clickEventHandle">传递数据</button>
  4. </template>
  5. <script>
  6. export default{
  7. data(){
  8. return{
  9. }
  10. },
  11. methods:{
  12. clickEventHandle(){
  13. this.$emit("someEvent","子元素数据") ;
  14. }
  15. }
  16. }
  17. </script>

3.7、组件事件+v-model

如果用户输入,我们希望在获取数据的同时发送数据配合v-model来使用。

App.vue:主要用来引入父组件Main.vue

  1. <template>
  2. <!--显示组件-->
  3. <Main/>
  4. </template>
  5. <script >
  6. //1、引入组件
  7. import Main from "./components/Main.vue"
  8. export default{
  9. //2.注入组件
  10. components:{
  11. Main
  12. }
  13. }
  14. </script>
  15. <style>
  16. </style>

父组件Main.vue:父组件中引入子组件,子组件通过v-model绑定数据数据,监听器监听数据并通过this.$emit传递给父亲组件。父组件可以获取实时数据。

  1. <template>
  2. <h2>Main</h2>
  3. <p>搜索的内容为:{{ msg }}</p>
  4. <Search @searchEvent="getHandle" />
  5. </template>
  6. <script>
  7. import Search from "./Search.vue"
  8. export default{
  9. data(){
  10. return{
  11. msg : ""
  12. }
  13. },
  14. components:{
  15. Search
  16. },
  17. methods:{
  18. getHandle(data){
  19. this.msg = data ;
  20. }
  21. }
  22. }
  23. </script>

子组件Search.vue:

  1. <template>
  2. 搜索: <input type="text" v-model="search">
  3. </template>
  4. <script>
  5. export default{
  6. data(){
  7. return{
  8. search : ""
  9. }
  10. },
  11. // 侦听器监听输入框的值
  12. watch:{
  13. search(newValue, OldValue){
  14. //将改变的新值传递给父组件
  15. this.$emit("searchEvent", newValue) ;
  16. }
  17. }
  18. }
  19. </script>

3.8、组件数据传递

父传子不仅可以传普通类型的数据,还可以传递函数,下面看一下具体的案例。

App.vue:引入父组件A

  1. <template>
  2. <!--显示组件-->
  3. <ComponentA/>
  4. </template>
  5. <script >
  6. //1、引入组件
  7. import ComponentA from "./components/ComponentA.vue"
  8. export default{
  9. //2.注入组件
  10. components:{
  11. ComponentA
  12. }
  13. }
  14. </script>
  15. <style>
  16. </style>

父组件传递函数给子组件:
 

  1. <template>
  2. <h2>父组件</h2>
  3. {{ msg }}
  4. <ComponentB title="标题" :onEvent="getHandle"/>
  5. </template>
  6. <script>
  7. import ComponentB from "./ComponentB.vue"
  8. export default{
  9. data(){
  10. return{
  11. msg : ""
  12. }
  13. },
  14. components:{
  15. ComponentB
  16. },
  17. methods:{
  18. getHandle(data){
  19. this.msg = data ;
  20. }
  21. }
  22. }
  23. </script>

子组件返回参数给父组件:

  1. <template>
  2. <h2>子组件</h2>
  3. <p>{{ title }}</p>
  4. <p>{{ onEvent("传递参数") }}</p>
  5. </template>
  6. <script>
  7. export default{
  8. data(){
  9. return{
  10. msg : ""
  11. }
  12. },
  13. props:{
  14. title:String ,
  15. onEvent:Function
  16. }
  17. }
  18. </script>

3.9、插槽Slots

slot元素是一个插槽出口,标识父元素提供的插槽内容在哪里被渲染。

父元素在子元素组件内部插入元素,通过插槽slot控制在子元素中显示。

  1. <template>
  2. <!--显示组件-->
  3. <SlotBase>
  4. <div>
  5. <h3>插槽标题</h3>
  6. <p>插槽内容</p>
  7. </div>
  8. </SlotBase>
  9. </template>
  10. <script >
  11. //1、引入组件
  12. import SlotBase from './components/SlotBase.vue';
  13. export default{
  14. //2.注入组件
  15. components:{
  16. SlotBase
  17. }
  18. }
  19. </script>
  20. <style>
  21. </style>

子元素通过slot插槽控制显示:

  1. <template>
  2. <h2>插槽基础</h2>
  3. <slot></slot>
  4. </template>
  5. <script >
  6. export default{
  7. data(){
  8. return{
  9. }
  10. }
  11. }
  12. </script>

插槽内容可以访问父组件的数据作用域,因为插槽内容在父组件模板中定义。v-slot可以简写成#

父组件设置具名插槽。

  1. <template>
  2. <!--显示组件-->
  3. <SlotBase2>
  4. <template v-slot:header>
  5. <p>{{ message }}</p>
  6. </template>
  7. <template v-slot:main>
  8. <p>{{ content }}</p>
  9. </template>
  10. </SlotBase2>
  11. </template>
  12. <script >
  13. //1、引入组件
  14. import SlotBase2 from './components/SlotBase2.vue';
  15. export default{
  16. //2.注入组件
  17. components:{
  18. SlotBase2
  19. },
  20. data(){
  21. return{
  22. message : "插槽标题",
  23. content: "插槽内容"
  24. }
  25. }
  26. }
  27. </script>

子组件引用相应的插槽:

  1. <template>
  2. <h2>插槽基础续集</h2>
  3. <slot>插槽默认值</slot>
  4. <slot name="header"></slot>
  5. <slot name="main"></slot>
  6. </template>
  7. <script >
  8. export default{
  9. data(){
  10. return{
  11. }
  12. }
  13. }
  14. </script>

在某些场景下,插槽内容可能想要同时使用父组件域内和子组件域内的数据,因为我们需要使用一种方法让子组件渲染时让出一部分数据提供给插槽。

3.10、组件生命周期

组件完整的生命周期包括:创建、挂载(渲染)、更新、销毁四个部分。

  1. <template>
  2. <h2>组件生命周期</h2>
  3. <p>{{ message }}</p>
  4. <button @click="updateHandle">点击更新组件</button>
  5. </template>
  6. <script >
  7. /**
  8. * 组件生命周期函数
  9. * 创建期: beforeCreate created
  10. * 挂载期: beforeMount mounted
  11. * 更新期: beforeUpdate updated
  12. * 销毁期:beforeUnmount unmounted
  13. */
  14. export default{
  15. data(){
  16. return{
  17. message : "更新之前"
  18. }
  19. },methods:{
  20. updateHandle(){
  21. this.message = "更新之后" ;
  22. }
  23. },
  24. beforeCreate(){
  25. },created(){
  26. },beforeMount(){
  27. },mounted(){
  28. },beforeUpdate(){
  29. },updated(){
  30. },beforeUnmount(){
  31. },unmounted(){
  32. }
  33. }
  34. </script>

3.11、组件生命周期应用

组件生命周期的应用主要包括两个部分:1.通过ref获取元素dom结构,2.模拟网络请求渲染数据。

  1. <template>
  2. <h2>组件生命周期应用</h2>
  3. <p ref="name">通过ref获取元素dom结构 </p>
  4. <ul>
  5. <li v-for="(item, index) in message" :key="item.id">
  6. <h3>{{ item.id }}</h3>
  7. <p>{{ item.name }}</p>
  8. </li>
  9. </ul>
  10. </template>
  11. <script >
  12. /**
  13. * 组件生命周期函数
  14. * 创建期: beforeCreate created
  15. * 挂载期: beforeMount mounted
  16. * 更新期: beforeUpdate updated
  17. * 销毁期:beforeUnmount unmounted
  18. */
  19. export default{
  20. data(){
  21. return{
  22. message : []
  23. }
  24. },mounted(){
  25. //模拟网络请求
  26. this.message = [{
  27. "id" : 1,
  28. "name" : "wang"
  29. },
  30. {
  31. "id" : 2,
  32. "name" : "li"
  33. }]
  34. }
  35. }
  36. </script>

3.12、动态组件

定义一个组件,通过按钮切换不同的组件,下面看这个例子。

定义一个A组件。

  1. <template>
  2. <h3>A组件</h3>
  3. </template>
  4. <script>
  5. </script>

定义一个B组件。

  1. <template>
  2. <h3>B组件</h3>
  3. </template>
  4. <script>
  5. </script>

引入A,B组件,定义按钮和动态组件,按钮点击切换组件。

  1. <template>
  2. <component :is="tabComponent"></component>
  3. <button @click="changeHandle">组件切换</button>
  4. </template>
  5. <script >
  6. import ComponentA from "./components/ComponentA.vue"
  7. import ComponentB from "./components/ComponentB.vue"
  8. export default{
  9. data(){
  10. return{
  11. tabComponent:"ComponentA"
  12. }
  13. },
  14. components:{
  15. ComponentA,
  16. ComponentB
  17. }
  18. ,methods:{
  19. changeHandle(){
  20. this.tabComponent = this.tabComponent == "ComponentA" ? "ComponentB" : "ComponentA" ;
  21. }
  22. }
  23. }
  24. </script>

3.13、组件保持存活

使用上述动态组件会使组件被卸载,可以使用keep-alive属性保持组件存活。

  1. <template>
  2. <keep-alive>
  3. <component :is="tabComponent"></component>
  4. </keep-alive>
  5. <button @click="changeHandle">组件切换</button>
  6. </template>
  7. <script >
  8. import ComponentA from "./components/ComponentA.vue"
  9. import ComponentB from "./components/ComponentB.vue"
  10. export default{
  11. data(){
  12. return{
  13. tabComponent:"ComponentA"
  14. }
  15. },
  16. components:{
  17. ComponentA,
  18. ComponentB
  19. }
  20. ,methods:{
  21. changeHandle(){
  22. this.tabComponent = this.tabComponent == "ComponentA" ? "ComponentB" : "ComponentA" ;
  23. }
  24. }
  25. }
  26. </script>

3.14、异步组件

异步组件可以优化项目的性能,因为用到的时候才去加载组件,用不到的不去加载。

  1. <template>
  2. <keep-alive>
  3. <component :is="tabComponent"></component>
  4. </keep-alive>
  5. <button @click="changeHandle">组件切换</button>
  6. </template>
  7. <script >
  8. import ComponentA from "./components/ComponentA.vue"
  9. // import ComponentB from "./components/ComponentB.vue"
  10. //异步加载组件
  11. import { defineAsyncComponent } from "vue";
  12. const ComponentB = defineAsyncComponent(()=>
  13. import("./components/ComponentB.vue"))
  14. export default{
  15. data(){
  16. return{
  17. tabComponent:"ComponentA"
  18. }
  19. },
  20. components:{
  21. ComponentA,
  22. ComponentB
  23. }
  24. ,methods:{
  25. changeHandle(){
  26. this.tabComponent = this.tabComponent == "ComponentA" ? "ComponentB" : "ComponentA" ;
  27. }
  28. }
  29. }
  30. </script>

3.15、Vue应用

首先每个vue应用都通过create函数创建一个新的应用实例,其中传入的App是根组件,每个应用都需要一个根组件,其他组件作为其子组件,应用示例必须在调用mount()方法才会被渲染,该方法接收一个容器作为参数,可以是一个DOM元素或者CSS选择器字符串。

  1. import { createApp } from 'vue'
  2. import App from './App.vue'
  3. // app是vue是vue的实例对象
  4. // 在一个vue项目中,有且只有一个vue实例对象
  5. const app = createApp(App) ;
  6. //App是根组件
  7. app.mount('#app');

真正的运行入口是index.html文件,<div id="app"></div>就是我们挂在的#app。

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <link rel="icon" href="/favicon.ico">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Vite App</title>
  8. </head>
  9. <body>
  10. <div id="app"></div>
  11. <script type="module" src="/src/main.js"></script>
  12. </body>
  13. </html>

四、第三方应用

4.1、Axios网络应用

首先在终端使用npm install --save axios指令安装axios,然后先看一下局部引用axios,如下:

  1. <template>
  2. <p>{{ chengpin }}</p>
  3. <p>{{ message }}</p>
  4. </template>
  5. <script >
  6. import axios from "axios"
  7. export default{
  8. name:'HelloWold',
  9. data(){
  10. return{
  11. chengpin:"",
  12. message: ""
  13. }
  14. }
  15. ,mounted(){
  16. /**
  17. // get请求
  18. axios({
  19. method:"get",
  20. url:"http://iwenwiki.com/api/blueberryapi/getChengpinDetails.php"
  21. }).then(res=>{
  22. this.chengpin = res.data.chengpinDetails[0]
  23. })
  24. // post请求
  25. axios({
  26. method:"post",
  27. url:"http://iwenwiki.com/api/blueberryapi/login.php",
  28. data: querystring.stringify({
  29. user_id : "iwen@qq.com",
  30. password: "iwen123",
  31. verification_code : "crfvw"
  32. })
  33. }).then(res=>{
  34. console.log(res.data) ;
  35. })
  36. */
  37. //get与post请求快捷方案
  38. axios.get("https://autumnfish.cn/api/joke").then(res=>{
  39. this.chengpin = res.data ;
  40. })
  41. axios.post("https://autumnfish.cn/api/user/reg",{username:"zhangsan"}).then(res=>{
  42. this.message = res.data ;
  43. })
  44. }
  45. }
  46. </script>

我们可以把axios的局部引用改成全局引用,具体如下,在main.js中将axios挂载到全局:

  1. import { createApp } from 'vue'
  2. import App from './App.vue'
  3. import axios from "axios"
  4. // app是vue是vue的实例对象
  5. // 在一个vue项目中,有且只有一个vue实例对象
  6. const app = createApp(App) ;
  7. // 将axios挂在到全局
  8. app.config.globalProperties.$axios = axios
  9. //App是根组件
  10. app.mount('#app');

然后在组件中引用:

  1. <template>
  2. <p>{{ chengpin }}</p>
  3. <p>{{ message }}</p>
  4. </template>
  5. <script >
  6. export default{
  7. name:'HelloWold',
  8. data(){
  9. return{
  10. chengpin:"",
  11. message: ""
  12. }
  13. }
  14. ,mounted(){
  15. /**
  16. // get请求
  17. axios({
  18. method:"get",
  19. url:"http://iwenwiki.com/api/blueberryapi/getChengpinDetails.php"
  20. }).then(res=>{
  21. this.chengpin = res.data.chengpinDetails[0]
  22. })
  23. // post请求
  24. axios({
  25. method:"post",
  26. url:"http://iwenwiki.com/api/blueberryapi/login.php",
  27. data: querystring.stringify({
  28. user_id : "iwen@qq.com",
  29. password: "iwen123",
  30. verification_code : "crfvw"
  31. })
  32. }).then(res=>{
  33. console.log(res.data) ;
  34. })
  35. */
  36. //get与post请求快捷方案
  37. this.$axios.get("https://autumnfish.cn/api/joke").then(res=>{
  38. this.chengpin = res.data ;
  39. })
  40. this.$axios.post("https://autumnfish.cn/api/user/reg",{username:"zhangsan"}).then(res=>{
  41. this.message = res.data ;
  42. })
  43. }
  44. }
  45. </script>

4.2、Vue引入路配置

在vue中,我们可以通过vue-router路由管理页面之间的关系。

第一步:首先在vscode终端使用npm install --save vue-router 命令安装路由。

第二步:配置独立的路由文件,在src下创建view目录,目录中创建index.js文件

  1. import {createRouter, createWebHashHistory} from "vue-router"
  2. import HomeView from "../view/HomeView.vue"
  3. import AboutView from "../view/AboutView.vue"
  4. //配置信息中需要页面的相关配置
  5. const routes = [
  6. {
  7. path:"/",
  8. component: HomeView
  9. },
  10. {
  11. path:"/about",
  12. component: AboutView
  13. }
  14. ]
  15. const router = createRouter({
  16. history:createWebHashHistory(),
  17. routes
  18. })
  19. export default router ;

第三步,在main.js中引入路由到项目

  1. import { createApp } from 'vue'
  2. import App from './App.vue'
  3. import axios from "axios"
  4. import router from './router';
  5. // app是vue是vue的实例对象
  6. // 在一个vue项目中,有且只有一个vue实例对象
  7. const app = createApp(App) ;
  8. // 将axios挂在到全局
  9. app.config.globalProperties.$axios = axios
  10. //App是根组件
  11. app.use(router).mount('#app');

最后是需要指定路由显示入口和路由跳转,如下:

  1. <template>
  2. <!--路由的显示入口-->
  3. <router-view></router-view>
  4. <!--路由跳转-->
  5. <router-link to="/">首页</router-link>
  6. <router-link to="/about">关于</router-link>
  7. </template>
  8. <script >
  9. import router from './router';
  10. export default{
  11. data() {
  12. return {};
  13. },
  14. components: { router }
  15. }
  16. </script>

4.3、路由传递参数

第一步,在路由配置中参数携带的key

  1. import {createRouter, createWebHashHistory} from "vue-router"
  2. import HomeView from "../view/HomeView.vue"
  3. //配置信息中需要页面的相关配置
  4. const routes = [
  5. {
  6. path:"/",
  7. component: HomeView
  8. },
  9. {
  10. path:"/about",
  11. component:()=>import("../view/AboutView.vue")
  12. },
  13. {
  14. path:"/news",
  15. // 异步加载组件
  16. component:()=>import("../view/NewsView.vue")
  17. },{
  18. path:"/newsdetails/:name",
  19. name:"newdetails",
  20. component:()=>import("../view/NewsDetailsView.vue")
  21. }
  22. ]
  23. const router = createRouter({
  24. history:createWebHashHistory(),
  25. routes
  26. })
  27. export default router ;

第二步,在跳转过程中携带参数。

  1. <template>
  2. <ul>
  3. <li><router-link to="/newsdetails/百度">百度新闻</router-link></li>
  4. <li><router-link to="/newsdetails/网易">网易新闻</router-link></li>
  5. <li><router-link to="/newsdetails/头条">头条新闻</router-link></li>
  6. </ul>
  7. </template>

第三步,在详情页面读取路由携带的参数。

  1. <template>
  2. <p>{{ $route.params.name }}</p>
  3. </template>

五、Vue3新特性

5.1、vue3新特性1

6大亮点:

1、性能比vue2更强。

2、可以将无用的模块剪辑,只打包自己需要的。

3、组合式api。

4、碎片和悬念。

5、更好的js支持。

6、暴露了自定义渲染api。

我们先看一下组合式api,准确说就是setup,可以把数据和事件等都卸载setup中,如下:

支持ref和reactive返回数据,支持事件处理和组件传参。

  1. <template>
  2. <p>{{ message }}</p>
  3. <ul>
  4. <li v-for="(item, index) in names.list" :key="index">{{ item }}</li>
  5. </ul>
  6. <button @click="clickHandle">点击</button>
  7. <p>{{ msg }}</p>
  8. </template>
  9. <script>
  10. import { ref, reactive } from 'vue';
  11. export default{
  12. name: 'HelloVue',
  13. props:{
  14. msg:String
  15. },
  16. // 组合式api
  17. setup(props,ctx){
  18. //setup中没有this关键字,ctx就是当前对象
  19. console.log(ctx) ;
  20. // ref
  21. const message = ref("消息")
  22. // reactive
  23. const names = reactive({
  24. list:["wang","li","zhang"]
  25. })
  26. // 事件之前放在methods中,现在放在setup
  27. function clickHandle(){
  28. alert("点击了") ;
  29. }
  30. // setup中可以使用props
  31. const msg = props.msg
  32. return{
  33. message,
  34. names,
  35. clickHandle,
  36. msg
  37. }
  38. }
  39. }
  40. </script>

App.vue:

  1. <template>
  2. <HelloVue msg="数据"/>
  3. </template>
  4. <script >
  5. import HelloVue from "./components/HelloVue.vue"
  6. export default{
  7. data() {
  8. return {};
  9. },components:{
  10. HelloVue
  11. }
  12. }
  13. </script>

5.2、vue3新特性2

在setup()中使用生命周期函数,如下:

  1. <template>
  2. </template>
  3. <script>
  4. import { onMounted } from 'vue';
  5. export default{
  6. name: 'HelloVue',
  7. // 组合式api
  8. setup(){
  9. onMounted(()=>{
  10. alert("onMounted") ;
  11. })
  12. }
  13. }
  14. </script>

六、ElementUI

6.1、vue3加载Element-plus

需要使用ElementUI首先需要将其引入到项目之中,使用npm install element-plus --save命令安装。

安装成功之后,在main.js中引入element-plus,如下:

  1. import { createApp } from 'vue'
  2. import App from './App.vue'
  3. import axios from "axios"
  4. import router from './router';
  5. import ElementPlus from "element-plus"
  6. import 'element-plus/dist/index.css'
  7. // app是vue是vue的实例对象
  8. // 在一个vue项目中,有且只有一个vue实例对象
  9. const app = createApp(App) ;
  10. // 将axios挂在到全局
  11. app.config.globalProperties.$axios = axios
  12. app.use(ElementPlus)
  13. //App是根组件
  14. app.use(router).mount('#app');

最后在相应的组件中直接使用就可以了,如下:

  1. <template>
  2. <div>
  3. <el-switch v-model="value1" />
  4. <el-switch
  5. v-model="value2"
  6. class="ml-2"
  7. style="--el-switch-on-color: #13ce66; --el-switch-off-color: #ff4949"
  8. />
  9. </div>
  10. </template>
  11. <script>
  12. import { ref } from 'vue';
  13. export default{
  14. name: 'HelloVue',
  15. // 组合式api
  16. setup(){
  17. const value1 = ref(false)
  18. const value2 = ref(true)
  19. return{
  20. value1,
  21. value2
  22. }
  23. }
  24. }
  25. </script>

上面引入element-plus是全局引用,现在我们是按需引用,提升系统性能,直接使用命令安装插件,然后修改配置文件vue.config.js中即可。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/355481
推荐阅读
相关标签
  

闽ICP备14008679号