深入理解Vue生命周期、手动挂载及挂载子组件

作者:Fairy-H 时间:2024-05-02 16:33:05 

本文介绍了Vue生命周期和手动挂载,分享给大家,具体如下:

1、vue的生命周期:

深入理解Vue生命周期、手动挂载及挂载子组件

2、$mount()手动挂载

当Vue实例没有el属性时,则该实例尚没有挂载到某个dom中;

假如需要延迟挂载,可以在之后手动调用vm.$mount()方法来挂载。

例如:

方法一:


<div id="app">
{{name}}
</div>
<button onclick="test()">挂载</button>
<script>
var obj= {name: '张三'}
var vm = new Vue({
 data: obj
})
function test() {
 vm.$mount("#app");
}

方法二:

Vue.extend()用以创建没有挂载的的子类,可以使用该子累创建多个实例


var app= Vue.extend({
template: '<p>{{firstName}} {{lastName}}</p>',
  data: function () {
   return {
   firstName: 'Walter',
   lastName: 'White'
   }
   }
  })
// 创建 app实例,并挂载到一个元素上。
new app().$mount('#app')

下面我们使用自动插入label

手动挂载插件:https://vuefe.cn/api/#Vue-extend

动手写代码

1、先移除user-name.vue 里显示错误的label,因为我们要手动插入


<label class="label label-danger">用户不合法</label>

2、先看一下我们插件validate.js的全部代码,然后我们再分析


export default{
 install(Vue){

Vue.prototype.checkUserName = (value) => {
     if(value == ""){
       return true; // 如果没有填写,默认为true
     }

if(/\w{6,20}/.test(value)){
       return true;
     }else{
       return false;
     }
   }

Vue.prototype.errorLabel = null;
   Vue.prototype.hasError = false;

Vue.directive("uname",{
     bind(){
       let errorTpl = Vue.extend({
         template:'<label class="label label-danger">用户不合法</label>'
       });
       // 实例化并挂载
       Vue.errorLabel = (new errorTpl()).$mount().$el;
     },
     update(el,binding,vnode){
       if(/\w{6,20}/.test(el.value)){
         // 验证通过
         if (Vue.hasError){
           el.parentNode.removeChild(Vue.errorLabel);
           Vue.hasError = !Vue.hasError;
         }
       }else{
         // 验证没有通过
         if (!Vue.hasError){
           el.parentNode.appendChild(Vue.errorLabel);
           Vue.hasError = ! Vue.hasError;
         }

}
     },
   })
 }
}

3、定义了2个prototype


Vue.prototype.errorLabel = null;
Vue.prototype.hasError = false;

errorLabel错误提示模板,我们在要bind() 方法中创建,然后挂载到它上面;hasError 是辅助属性,方便我们用来判断当前是有错误还是没有错误。

4、在update() 方法中,实时监听用户的输入,然后移除/添加 错误模板


update(el,binding,vnode){
  if(/\w{6,20}/.test(el.value)){
    // 验证通过
    if (Vue.hasError){
      el.parentNode.removeChild(Vue.errorLabel);
      Vue.hasError = !Vue.hasError;
    }
  }else{
    // 验证没有通过
    if (!Vue.hasError){
      el.parentNode.appendChild(Vue.errorLabel);
      Vue.hasError = ! Vue.hasError;
    }
  }
},

5、演示效果如下图

深入理解Vue生命周期、手动挂载及挂载子组件

来源:http://blog.csdn.net/ma6119780/article/details/69524878

标签:Vue,生命周期,手动挂载
0
投稿

猜你喜欢

  • 一文学习MySQL 意向共享锁、意向排他锁、死锁

    2024-01-21 23:17:27
  • ASP中使用SQL语句教程

    2008-09-03 12:17:00
  • JS预览图像将本地图片显示到浏览器上

    2024-04-18 09:35:21
  • Python实现我的世界小游戏源代码

    2023-07-26 02:09:08
  • Python爬虫基础讲解之scrapy框架

    2023-11-16 00:07:31
  • Pycharm 字体大小调整设置的方法实现

    2023-10-23 19:35:11
  • 一行代码给你的WordPress Blog添加下雪效果

    2008-12-14 09:43:00
  • python3通过udp实现组播数据的发送和接收操作

    2023-01-14 02:27:42
  • Apache DophinScheduler定时调度Python脚本的实现

    2021-06-23 15:02:54
  • python实现在sqlite动态创建表的方法

    2021-08-05 13:54:10
  • 微信支付的开发流程详解

    2023-09-07 08:54:45
  • python用plotly实现绘制局部放大图

    2021-06-13 06:30:44
  • python 装饰器(Decorators)原理说明及操作代码

    2023-12-11 19:06:50
  • 设计表单的标签和输入区

    2009-04-27 16:16:00
  • javascript 网站常用的iframe分割

    2023-08-19 09:27:58
  • python OpenCV实现答题卡识别判卷

    2023-12-20 17:27:57
  • SQL Server ISNULL 不生效原因及解决

    2024-01-13 09:53:34
  • vue实现列表倒计时

    2024-04-28 09:30:36
  • python中flatten()参数示例详解

    2022-07-03 11:19:57
  • Python continue语句用法实例

    2021-02-16 07:40:00
  • asp之家 网络编程 m.aspxhome.com