• Vue插件(Plugin)、动态组件(component)和混入(mixin)介绍


    目录

    一、插件

    二、动态组件

    keep-alive

    动态组件的生命周期

    三、混入 


    一、插件

    插件通常用来为 Vue 添加全局功能。Vue.js 的插件应该暴露一个 install 方法。这个方法的第一个参数是 Vue 构造器,第二个参数是一个可选的选项对象。

    通过全局方法 Vue.use() 使用插件。

    1. 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>Documenttitle>
    8. <script src="https://cdn.jsdelivr.net/npm/vue@2.7.10">script>
    9. <script src="https://cdn.bootcdn.net/ajax/libs/moment.js/2.29.4/moment.min.js">script>
    10. head>
    11. <body>
    12. <div id="app">
    13. {{new Date().getTime() | fmtDate}}
    14. <input type="text" v-focus>
    15. div>
    16. <script>
    17. // 1.定义一个插件
    18. let myPlugin = {
    19. // 插件暴露一个install方法 参数:Vue构造函数 option可选项
    20. install(Vue,options){
    21. // 1.1 定义全局资源 Vue.xxx
    22. //定义一个 自定义指令
    23. Vue.directive('focus',{
    24. inserted(el){
    25. el.focus()
    26. }
    27. });
    28. //定义一个过滤器
    29. Vue.filter('fmtDate', function(val){
    30. return moment(val).format('YYYY-MM-DD')
    31. });
    32. //1.2 定义一个实例方法,定义在Vue的原型上 Vue.prototype.xxx
    33. Vue.prototype.message = function(val){
    34. console.log(val);
    35. }
    36. }
    37. }
    38. //2.使用插件
    39. Vue.use(myPlugin)
    40. new Vue({
    41. el:"#app",
    42. created(){
    43. // 插件中在Vue原型上定义了一个方法message,因此这里可以使用message方法
    44. this.message('请求成功!')
    45. }
    46. })
    47. script>
    48. body>
    49. html>

    二、动态组件

    动态组件使用component标签,标签内使用v-bind绑定is属性动态切换组件:

    <component :is="current">component>

    例子:
    点击相应按钮切换相应组件:

    1. <body>
    2. <div id="app">
    3. <button @click="current=myA">切换A组件button>
    4. <button @click="current=myB">切换B组件button>
    5. <component :is="current">component>
    6. div>
    7. <script>
    8. // 定义组件myA
    9. let myA = {
    10. template:`
    11. 我是A组件
    12. `
    13. }
    14. // 定义组件myB
    15. let myB = {
    16. template:`
    17. 我是B组件
    18. `
    19. }
    20. new Vue({
    21. el:"#app",
    22. // 注册组件
    23. components:{
    24. 'my-a': myA,
    25. 'my-b': myB
    26. },
    27. data:{
    28. current: myA
    29. }
    30. })
    31. script>
    32. body>

    keep-alive

     默认情况下,当组件在切换的时候都会重新创建组件,但是有些时候我们希望组件实例能够被在它们第一次被创建的时候缓存下来。为了解决这个问题,我们可以用一个 元素将其动态组件包裹起来。

    1. <keep-alive>
    2. <component :is="current">component>
    3. keep-alive>

    动态组件的生命周期

    动态组件中新增了三个生命周期:

    activated:进入激活组件

    deactivated:离开停用

    errorCaptured:子组件/后代组件发生错误捕获错误

    触发顺序:

    created-->errorCaptured-->mounted-->activated-->deactivated

    1. <body>
    2. <div id="app">
    3. <button @click="current=myA">切换A组件button>
    4. <button @click="current=myB">切换B组件button>
    5. <keep-alive>
    6. <component :is="current">component>
    7. keep-alive>
    8. div>
    9. <script>
    10. // 定义一个A的子组件,用来说明errorCaptured声明周期
    11. let aChild={
    12. template:`
    13. A组件的子组件
    14. {{subMsg}}
  • `
  • };
  • // 定义组件myA
  • let myA = {
  • template:`
  • 我是A组件
  • `,
  • components:{
  • 'a-child': aChild
  • },
  • created(){
  • alert('实例A初始化完成');
  • },
  • mounted(){
  • alert('实例A挂载到页面完成')
  • },
  • // 激活组件 进入组件就会触发的生命周期
  • activated() {
  • alert('进入A组件了')
  • },
  • // 捕获子组件/后代组件发生错误的生命周期
  • errorCaptured(){
  • alert('子组件发生错误了');
  • },
  • // 离开当前组件触发 停用组件
  • deactivated(){
  • alert('离开A组件了');
  • },
  • }
  • // 定义组件myB
  • let myB = {
  • template:`
  • 我是B组件
  • `
  • }
  • new Vue({
  • el:"#app",
  • // 注册组件
  • components:{
  • 'my-a': myA,
  • 'my-b': myB
  • },
  • data:{
  • current: myA
  • }
  • })
  • script>
  • body>
  • 三、混入 

    混入 (mixin) 提供了一种非常灵活的方式,来分发 Vue 组件中的可复用功能。一个混入对象可以包含任意组件选项。当组件使用混入对象时,所有混入对象的选项将被“混合”进入该组件本身的选项。

    全局混入

    Vue.mixin()

    不建议使用全局注册混入对象,一旦使用全局混入,它将会影响以后创建的每一个vue实例。

    局部混入

    在组件实例中使用mixin配置项  mixins:[]

    混入规则

    当组件和混入对象有同名选项时,这些选项会以恰当的方式合并:

    1、数据 data:

    数据对象在混入时,会进行合并,发生冲突时,保留组件的数据

    2、值为对象 methods、computed等:

    在混入时,methods会合并成为一个对象,如果对象的键名发生冲突,则保留组件对象的键值对

    3、生命周期钩子函数:

    同名的钩子函数会被合并为一个数组,依次都会被调用,但是混入对象的钩子函数先被调用

    1. <body>
    2. <div id="app">
    3. {{mixinMsg}}
    4. {{foo()}}
    5. {{bar()}}
    6. div>
    7. <script>
    8. // 定义一个混入对象
    9. let myMixin = {
    10. data(){
    11. return{
    12. mixinMsg: '我是混入对象的数据',
    13. age: 18
    14. }
    15. },
    16. created(){
    17. console.log('我是混入的生命周期');
    18. },
    19. methods:{
    20. foo(){
    21. return this.age
    22. },
    23. bar(){
    24. console.log('我是混入方法');
    25. }
    26. },
    27. }
    28. // 全局混入——>混入到所有组件实例
    29. // Vue.mixin(myMixin);
    30. new Vue({
    31. // 局部混入
    32. mixins: [myMixin],
    33. el:"#app",
    34. // 数据对象在混入时,会进行合并,发生冲突时,保留组件的数据
    35. data:{
    36. msg: '我是vue实例的数据模型',
    37. age: 20
    38. },
    39. // 生命周期会合并并依次调用执行 混入的生命周期优先执行
    40. created(){
    41. console.log('我是组件的生命周期');
    42. console.log(this.$data);
    43. },
    44. // 在混入时,methods会合并成为一个对象,如果对象的键名发生冲突,则保留组件对象的键值对
    45. methods:{
    46. bar(){
    47. console.log('我是组件的方法');
    48. }
    49. }
    50. })
    51. script>
    52. body>

     

  • 相关阅读:
    CAD中的超级修剪功能、使用CAD旋转命令绘制图形
    深入了解微前端
    Nginx Proxy Manager 单机多Docker Compose 反向代理配置
    springboot+篮球场馆预约系统 毕业设计-附源码211706
    GIS前端—Popup标注视图
    【校招VIP】前端算法考察之链表算法
    维修一款20年前的电容测试表VC6013
    面试面经|Java面试RabbitMQ面试题
    maven
    基于改进NSGA-Ⅱ算法的开关磁阻电机再生制动优化控制方法
  • 原文地址:https://blog.csdn.net/lq313131/article/details/127091684