当前位置: 首页 > article >正文

Vue5---

目录

一、学习目标

1.自定义指令

2.插槽

3.综合案例:商品列表

4.路由入门

二、自定义指令

1.指令介绍

2.自定义指令

3.自定义指令的语法

三、自定义指令-指令的值

1.需求

2.语法

3.代码示例

五、插槽-默认插槽

1.作用

2.需求

4.使用插槽的基本语法

5.代码示例

6.总结

六、插槽-后备内容(默认值)

1.问题

2.插槽的后备内容

3.语法

4.效果

5.代码示例

七、插槽-具名插槽

1.需求

2.具名插槽语法(两步)

3.v-slot的简写

4.总结

八、作用域插槽

1.插槽分类

2.作用

3.场景

4.使用步骤

5.代码示例

6.总结

十四、单页应用程序介绍

1.概念

2.具体示例

3.单页应用 VS 多页面应用

4.总结

十五、路由介绍

1.思考

2.路由的介绍

十六、路由的基本使用

1.目标

2.作用

3.说明

4.官网

5.VueRouter的使用(5+2)

6.代码示例

7.两个核心步骤

十七、组件的存放目录问题

1.组件分类

2.存放目录

十八、路由的封装抽离


一、学习目标

1.自定义指令

  • 基本语法(全局、局部注册)

  • 指令的值

  • v-loading的指令封装

2.插槽

  • 默认插槽

  • 具名插槽

  • 作用域插槽

3.综合案例:商品列表

  • MyTag组件封装

  • MyTable组件封装

4.路由入门

  • 单页应用程序

  • 路由

  • VueRouter的基本使用

二、自定义指令

1.指令介绍

  • 内置指令:v-html、v-if、v-bind、v-on... 这都是Vue给咱们内置的一些指令,可以直接使用

  • 自定义指令:同时Vue也支持让开发者,自己注册一些指令。这些指令被称为自定义指令

    每个指令都有自己各自独立的功能

2.自定义指令

概念:自己定义的指令,可以封装一些对DOM的操作,扩展额外的功能

3.自定义指令的语法

  • 全局注册

//在main.js中
//inserted指的是当指令所绑定的元素被添加到页面中时,会自动调用的钩子函数
Vue.directive('指令名', {
  inserted (el) {   //形参el可以拿到指定所绑定的元素
    // 可以对 el 标签,扩展额外功能
    el.focus()
  }
})

例子:

main.js

import Vue from 'vue'
import App from './App.vue'

Vue.config.productionTip = false

// 1. 全局注册指令
Vue.directive('focus', {
  inserted (el) {
    // console.log(el);
    el.focus()
  }
})


new Vue({
  render: h => h(App),
}).$mount('#app')

Vue.app

<template>
  <div>
    <h1>自定义指令</h1>
    <input v-focus ref="inp" type="text">
  </div>
</template>

<script>
export default {
  //ref的实现:
  // mounted () {
  //   this.$refs.inp.focus()
  // }
}
</script>

<style>

</style>
  • 局部注册
//在Vue组件的directives配置项中,然后以"指令名":{}的形式注册很多的指令
directives: {
  "指令名": {
    inserted (el) {
      el.focus()
    }
  }
}

案例:

Vue.app

<template>
  <div>
    <h1>自定义指令</h1>
    <input v-focus ref="inp" type="text">
  </div>
</template>

<script>
export default {
  // 2. 局部注册指令
  directives: {
    // 指令名:指令的配置项
    focus: {
      inserted (el) {
        el.focus()
      }
    }
  }
}
</script>

<style>

</style>
  • 在注册好指令后,就可以在元素上使用指令 v-指令名。如:<input type="text" v-focus/>

    注册指令时不用v-前缀,但使用时一定要加v-前缀

三、自定义指令-指令的值

1.需求

实现一个 color 指令 - 传入不同的颜色, 给标签设置文字颜色

2.语法

1.在绑定指令时,可以通过“等号”的形式为指令 绑定 具体的参数值

<div v-color="color">我是内容</div>

2.通过 binding.value 可以拿到指令值,指令值修改就会 触发 update 函数

directives: {
  color: {
    inserted (el, binding) {   
      el.style.color = binding.value   //binding.value可以获取到指令的值
    },
    update (el, binding) {
      el.style.color = binding.value
    }
  }
}

3.代码示例

App.vue

<template>
  <div>
    <h1 v-color="color1">指令的值1测试</h1>
    <h1 v-color="color2">指令的值2测试</h1>
  </div>
</template>

<script>
export default {
  data () {
    return {
      color1: 'red',
      color2: 'orange'
    }
  },
  directives: {
    color: {
      // 1. inserted 提供的是元素被添加到页面中时的逻辑
      inserted (el, binding) {
        // console.log(el, binding.value);
        // binding.value 就是指令的值
        el.style.color = binding.value
      },
      // 2. update 指令的值修改的时候触发,提供值变化后,dom更新的逻辑
      update (el, binding) {
        console.log('指令的值修改了');
        el.style.color = binding.value
      }
    }
  }
}
</script>

<style>

</style>

五、插槽-默认插槽

1.作用

让组件内部的一些 结构 支持 自定义,也就是组件内定制一处结构

2.需求

在页面中显示一个对话框,封装成一个组件

问题:组件的内容部分,不希望写死,可以在使用的时候自定义。

4.使用插槽的基本语法

  1. 在组件内需要定制的部分,用<slot></slot>占位

  2. 使用组件时, 在组件标签的内部提供内容<MyDialog></MyDialog>, 这个内容最终会替换slot标签

  3. 给插槽传入内容时,可以传入纯文本、html标签、组件

5.代码示例

MyDialog.vue

<template>
  <div class="dialog">
    <div class="dialog-header">
      <h3>友情提示</h3>
      <span class="close">✖️</span>
    </div>

    <div class="dialog-content">
      <!-- 1. 在需要定制的位置,使用slot占位 -->
      <slot></slot>
    </div>
    <div class="dialog-footer">
      <button>取消</button>
      <button>确认</button>
    </div>
  </div>
</template>

<script>
export default {
  data () {
    return {

    }
  }
}
</script>

<style scoped>
* {
  margin: 0;
  padding: 0;
}
.dialog {
  width: 470px;
  height: 230px;
  padding: 0 25px;
  background-color: #ffffff;
  margin: 40px auto;
  border-radius: 5px;
}
.dialog-header {
  height: 70px;
  line-height: 70px;
  font-size: 20px;
  border-bottom: 1px solid #ccc;
  position: relative;
}
.dialog-header .close {
  position: absolute;
  right: 0px;
  top: 0px;
  cursor: pointer;
}
.dialog-content {
  height: 80px;
  font-size: 18px;
  padding: 15px 0;
}
.dialog-footer {
  display: flex;
  justify-content: flex-end;
}
.dialog-footer button {
  width: 65px;
  height: 35px;
  background-color: #ffffff;
  border: 1px solid #e1e3e9;
  cursor: pointer;
  outline: none;
  margin-left: 10px;
  border-radius: 3px;
}
.dialog-footer button:last-child {
  background-color: #007acc;
  color: #fff;
}
</style>

App.vue

<template>
  <div>
    <!-- 2. 在使用组件时,组件标签内填入内容 -->
    <MyDialog>
      <div>你确认要删除么</div>
    </MyDialog>

    <MyDialog>
      <p>你确认要退出么</p>
    </MyDialog>
  </div>
</template>

<script>
import MyDialog from './components/MyDialog.vue'
export default {
  data () {
    return {

    }
  },
  components: {
    MyDialog
  }
}
</script>

<style>
body {
  background-color: #b3b3b3;
}
</style>

6.总结

场景:组件内某一部分结构不确定,想要自定义怎么办

使用:插槽的步骤分为哪几步?

六、插槽-后备内容(默认值)

1.问题

通过插槽完成了内容的定制,传什么显示什么, 但是如果不传,则是空白

能否给插槽设置 默认显示内容 呢?

2.插槽的后备内容

封装组件时,可以为预留的 <slot> 插槽提供后备内容(默认内容)。

3.语法

在 <slot> 标签内,放置内容, 作为默认显示的内容

4.效果

  • 外部使用组件时,不传东西,则slot会显示后备内容

  • 外部使用组件时,传东西了,则slot整体会被换掉

5.代码示例

App.vue

<template>
  <div>
    <MyDialog></MyDialog>

    <MyDialog>
      你确认要退出么
    </MyDialog>
  </div>
</template>

<script>
import MyDialog from './components/MyDialog.vue'
export default {
  data () {
    return {

    }
  },
  components: {
    MyDialog
  }
}
</script>

<style>
body {
  background-color: #b3b3b3;
}
</style>

MyDialog.vue

<template>
  <div class="dialog">
    <div class="dialog-header">
      <h3>友情提示</h3>
      <span class="close">✖️</span>
    </div>

    <div class="dialog-content">
      <!-- 往slot标签内部,编写内容,可以作为后备内容(默认值) -->
      <slot>
        我是默认的文本内容
      </slot>
    </div>
    <div class="dialog-footer">
      <button>取消</button>
      <button>确认</button>
    </div>
  </div>
</template>

<script>
export default {
  data () {
    return {

    }
  }
}
</script>

<style scoped>
* {
  margin: 0;
  padding: 0;
}
.dialog {
  width: 470px;
  height: 230px;
  padding: 0 25px;
  background-color: #ffffff;
  margin: 40px auto;
  border-radius: 5px;
}
.dialog-header {
  height: 70px;
  line-height: 70px;
  font-size: 20px;
  border-bottom: 1px solid #ccc;
  position: relative;
}
.dialog-header .close {
  position: absolute;
  right: 0px;
  top: 0px;
  cursor: pointer;
}
.dialog-content {
  height: 80px;
  font-size: 18px;
  padding: 15px 0;
}
.dialog-footer {
  display: flex;
  justify-content: flex-end;
}
.dialog-footer button {
  width: 65px;
  height: 35px;
  background-color: #ffffff;
  border: 1px solid #e1e3e9;
  cursor: pointer;
  outline: none;
  margin-left: 10px;
  border-radius: 3px;
}
.dialog-footer button:last-child {
  background-color: #007acc;
  color: #fff;
}
</style>

七、插槽-具名插槽

1.需求

一个组件内有多处结构,需要外部传入标签,进行定制,也就是一个组件内有多处内容要定制

上面的弹框中有三处不同,但是默认插槽只能定制一个位置,这时候怎么办呢?

2.具名插槽语法(两步)

  • 给多个slot标签使用name属性起名字,用来区分插槽的名字,此时插槽就是具名插槽

  • 在组件标签中提供内容的时候,用template标签配合v-slot:插槽名,来给不同的插槽分发对应的内容

3.v-slot的简写

v-slot写起来太长,vue给我们提供一个简单写法 v-slot —> #

MyDialog.vue

<template>
  <div class="dialog">
    <div class="dialog-header">
      <!-- 一旦插槽起了名字,就是具名插槽,只支持定向分发 -->
      <slot name="head"></slot>
    </div>

    <div class="dialog-content">
      <slot name="content"></slot>
    </div>
    
    <div class="dialog-footer">
      <slot name="footer"></slot>
    </div>
  </div>
</template>

<script>
export default {
  data () {
    return {

    }
  }
}
</script>

<style scoped>
* {
  margin: 0;
  padding: 0;
}
.dialog {
  width: 470px;
  height: 230px;
  padding: 0 25px;
  background-color: #ffffff;
  margin: 40px auto;
  border-radius: 5px;
}
.dialog-header {
  height: 70px;
  line-height: 70px;
  font-size: 20px;
  border-bottom: 1px solid #ccc;
  position: relative;
}
.dialog-header .close {
  position: absolute;
  right: 0px;
  top: 0px;
  cursor: pointer;
}
.dialog-content {
  height: 80px;
  font-size: 18px;
  padding: 15px 0;
}
.dialog-footer {
  display: flex;
  justify-content: flex-end;
}
.dialog-footer button {
  width: 65px;
  height: 35px;
  background-color: #ffffff;
  border: 1px solid #e1e3e9;
  cursor: pointer;
  outline: none;
  margin-left: 10px;
  border-radius: 3px;
}
.dialog-footer button:last-child {
  background-color: #007acc;
  color: #fff;
}
</style>

App.vue

<template>
  <div>
    <MyDialog>
      <!-- 在组件标签中提供内容的时候,用template标签配合v-slot:名字来分发对应内容 -->
      <template v-slot:head>
        <div>我是大标题</div>
      </template>
      
      <template v-slot:content>
        <div>我是内容</div>
      </template>

      <template #footer>
        <button>取消</button>
        <button>确认</button>
      </template>
    </MyDialog>
  </div>
</template>

<script>
import MyDialog from './components/MyDialog.vue'
export default {
  data () {
    return {

    }
  },
  components: {
    MyDialog
  }
}
</script>

<style>
body {
  background-color: #b3b3b3;
}
</style>

4.总结

  • 组件内 有多处不确定的结构 怎么办?

  • 具名插槽的语法是什么?

  • v-slot:插槽名可以简化成什么?

八、作用域插槽

1.插槽分类

  • 默认插槽

  • 具名插槽

    插槽只有两种,作用域插槽不属于插槽的一种分类,是插槽的一个传参语法

2.作用

定义slot 插槽的同时 以添加属性的方式 传值,将来 在使用组件的组件 内,可以接收到插槽传的数据

3.场景

封装表格组件

4.使用步骤

  1. 在 slot 标签中, 以 添加属性的方式 传值

    <slot :id="item.id" msg="测试文本"></slot>
  2. 内部自动将solt标签中所有添加的属性, 收集到一个对象中

    { id: 3, msg: '测试文本' }
  3. 在使用组件的组件内,在template中, 通过 #插槽名= "obj" 接收插槽传过来的对象(第二步的对象),默认的插槽名为 default

    <MyTable :list="list">
      <template #default="obj">
        <button @click="del(obj.id)">删除</button>
      </template>
    </MyTable>

5.代码示例

MyTable.vue

<template>
  <table class="my-table">
    <thead>
      <tr>
        <th>序号</th>
        <th>姓名</th>
        <th>年纪</th>
        <th>操作</th>
      </tr>
    </thead>
    <tbody>
      <tr v-for="(item, index) in data" :key="item.id">
        <td>{
  
  { index + 1 }}</td>
        <td>{
  
  { item.name }}</td>
        <td>{
  
  { item.age }}</td>
        <td>
          <!-- 1. 给slot标签,以添加属性的方式 传值 -->
          <slot :row="item" msg="测试文本"></slot>
        </td>
      </tr>
    </tbody>
  </table>
</template>

<script>
export default {
  props: {
    data: Array
  }
}
</script>

<style scoped>
.my-table {
  width: 450px;
  text-align: center;
  border: 1px solid #ccc;
  font-size: 24px;
  margin: 30px auto;
}
.my-table thead {
  background-color: #1f74ff;
  color: #fff;
}
.my-table thead th {
  font-weight: normal;
}
.my-table thead tr {
  line-height: 40px;
}
.my-table th,
.my-table td {
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.my-table td:last-child {
  border-right: none;
}
.my-table tr:last-child td {
  border-bottom: none;
}
.my-table button {
  width: 65px;
  height: 35px;
  font-size: 18px;
  border: 1px solid #ccc;
  outline: none;
  border-radius: 3px;
  cursor: pointer;
  background-color: #ffffff;
  margin-left: 5px;
}
</style>

App.vue

<template>
  <div>
    <MyTable :data="list">
      <!-- 3. 通过template #插槽名="变量名" 接收 -->
      <template #default="obj">
        <button @click="del(obj.row.id)">
          删除
        </button>
      </template>
    </MyTable>
    
    <MyTable :data="list2">
      <template #default="{ row }">
        <button @click="show(row)">查看</button>
      </template>
    </MyTable>
  </div>
</template>

<script>
import MyTable from './components/MyTable.vue'
export default {
  data () {
    return {
      list: [
        { id: 1, name: '张小花', age: 18 },
        { id: 2, name: '孙大明', age: 19 },
        { id: 3, name: '刘德忠', age: 17 },
      ],
      list2: [
        { id: 1, name: '赵小云', age: 18 },
        { id: 2, name: '刘蓓蓓', age: 19 },
        { id: 3, name: '姜肖泰', age: 17 },
      ]
    }
  },
  methods: {
    del (id) {
      this.list = this.list.filter(item => item.id !== id)
    },
    show (row) {
      // console.log(row);
      alert(`姓名:${row.name}; 年纪:${row.age}`)
    }
  },
  components: {
    MyTable
  }
}
</script>

6.总结

1.作用域插槽的作用是什么?

2.作用域插槽的使用步骤是什么?

十四、单页应用程序介绍

1.概念

单页应用程序:SPA【Single Page Application】是指所有的功能都在一个html页面上实现

2.具体示例

单页应用网站: 网易云音乐 网易云音乐

多页应用网站:京东 京东(JD.COM)-正品低价、品质保障、配送及时、轻松购物!

3.单页应用 VS 多页面应用

单页应用类网站:系统类网站 / 内部网站 / 文档类网站 / 移动端站点

多页应用类网站:公司官网 / 电商类网站

4.总结

1.什么是单页面应用程序?

2.单页面应用优缺点?

3.单页应用场景?

十五、路由介绍

1.思考

单页面应用程序,之所以开发效率高,性能好,用户体验好

最大的原因就是:页面按需更新

比如当点击【发现音乐】和【关注】时,只是更新下面部分内容,对于头部是不更新的

要按需更新,首先就需要明确:访问路径和 组件的对应关系!

访问路径 和 组件的对应关系如何确定呢? 路由

2.路由的介绍

生活中的路由:设备和ip的映射关系

Vue中的路由是:访问路径 和 组件 的映射关系

十六、路由的基本使用

1.目标

认识 VueRouter插件,掌握 VueRouter 的基本使用步骤

2.作用

修改地址栏路径时,切换显示的组件

3.说明

Vue 官方的一个路由插件,是一个第三方包

4.官网

Vue Router

5.VueRouter的使用(5+2)

固定的5个基本步骤(不用死背,熟能生巧)

1.下载 VueRouter模块到当前工程中,版本3.6.5(vue2对应的路由版本是VueRouter3.x)

yarn add vue-router@3.6.5

2.在main.js中引入VueRouter模块

import VueRouter from 'vue-router'

3.在main.js中安装注册VueRouter插件,Vue相关的插件要使用时都需要按照注册

Vue.use(VueRouter)

4.在main.js中创建路由对象

const router = new VueRouter()

5.在main.js中,将路由对象注入到new Vue实例中,建立关联

new Vue({
  render: h => h(App),
  router:router
}).$mount('#app')

当我们配置完以上5步之后 就可以看到浏览器地址栏中的路由 变成了 /#/的形式。表示项目的路由已经被Vue-Router管理了

6.代码示例

import Vue from 'vue'
import App from './App.vue'

import VueRouter from 'vue-router'
Vue.use(VueRouter)
const router = new VueRouter()

Vue.config.productionTip = false

new Vue({
  render: h => h(App),
  router
}).$mount('#app')

7.两个核心步骤

1.先创建需要的组件 (在views目录下),并在实例化VueRouter对象的时候配置其路由规则

  • 在main.js中,实例化VueRouter对象的同时传递一个带有routes属性的对象进去,其中routes数组的每个对象就是一个路由规则(path是地址栏路径,component是对应的组件,当访问某个path时,匹配的就是对应的组件)

2.配置导航链接;还有配置路由出口:<router-view></router-view>用来控制组件所展示的位置

App.vue

  <div>
    <div class="footer_wrap">
      <a href="#/find">发现音乐</a>
      <a href="#/my">我的音乐</a>
      <a href="#/friend">朋友</a>
    </div>
    <div class="top">
      <!-- 路由出口:匹配的组件所展示的位置 -->
      <router-view></router-view>
    </div>
  </div>

十七、组件的存放目录问题

注意: .vue文件 本质无区别

路由相关的组件为什么要放在views目录下呢?

1.组件分类

.vue文件分为2类,都是 .vue文件(本质无区别)

  • 页面组件 (配置路由规则时使用的组件)

  • 复用组件(多个组件中都使用到的组件)

2.存放目录

分类开来的目的就是为了 更易维护

  1. src/views文件夹下放:

    页面组件 - 页面展示 - 配合路由用

  2. src/components文件夹下放:

    复用组件 - 展示数据 - 常用于复用

十八、路由的封装抽离

将路由模块抽离出来。 好处:拆分模块,利于维护

  • 将路由相关的代码,抽取到src/router/index.js文件中,然后在main.js中就只需要导入路由,然后注入到Vue实例中即可

index.js

//导入组件
import Find from '@/views/Find'
import My from '@/views/My'
import Friend from '@/views/Friend.vue'
//导入需要的模块
import Vue from 'vue'
import VueRouter from 'vue-router'
Vue.use(VueRouter)   //VueRouter插件初始化

//创建路由对象,同时配置路由规则
const router = new VueRouter({
  routes:[
    {path: '/find', component: Find},
    {path: '/my',component:  My},
    {path: '/friend',component: Friend}
  ]
})

//导出路由对象
export default router

main.js

import Vue from 'vue'
import App from './App.vue'

//导入路由对象
import router from './router/index'

Vue.config.productionTip = false

new Vue({
  render: h => h(App),
  router
}).$mount('#app')


http://www.kler.cn/a/524188.html

相关文章:

  • (2)SpringBoot自动装配原理简介
  • PPT自动化 python-pptx -7: 占位符(placeholder)
  • 基于物联网的火灾报警器设计与实现(论文+源码)
  • AndroidCompose Navigation导航精通1-基本页面导航与ViewPager
  • set集合
  • DeepSeek-R1:强化学习驱动的推理模型
  • 平衡三进制计算机基础构想
  • 单片机开发——定时器(基于51)
  • Baklib揭示内容中台与人工智能技术的创新协同效应
  • FastAPI + GraphQL 项目架构
  • Windows 下本地 Docker RAGFlow 部署指南
  • 分库分表后如何进行join操作
  • 新增文章功能
  • gesp(C++六级)(4)洛谷:B3874:[GESP202309 六级] 小杨的握手问题
  • 深度学习 Pytorch 深层神经网络
  • 虚幻浏览器插件 UE与JS通信
  • 《活出人生的厚度》
  • 【Docker】快速部署 Nacos 注册中心
  • AlertDialog组件的功能与用法
  • 电信骨干网络
  • 世上本没有路,只有“场”et“Bravo”
  • kaggle比赛入门 - House Prices - Advanced Regression Techniques(第四部分)
  • c++ 定点 new
  • WGCLOUD使用详解 - 如何监控文件防篡改
  • 计算机的错误计算(二百二十四)
  • 【玩转全栈】----靓号管理系统实现