vue3学习简单记录

一、vue2和vue3的简单的比较

Vue2.0

首先vue2中的数据是通过Object.defineProperty去处理的,对于new Vue 配置项中的data,将其放置在vm._data中,对象引用类型操作同一地址,遍历data,取到属性key,Object.defineProperty(data,key,{})然后进行一系列处理。

考虑性能问题,重新定义数组的原型来达到响应式。
Object.defineProperty 无法检测到对象属性的添加和删除 。
由于Vue会在初始化实例时对属性执行getter/setter转化,所有属性必须在data对象上存在才能让Vue将它转换为响应式。
深度监听需要一次性递归,对性能影响比较大。

function defineReactive(target, key, value) {
   //深度监听
   observer(value);
 
   Object.defineProperty(target, key, {
     get() {
       return value;
     },
     set(newValue) {
       //深度监听
       observer(value);
       if (newValue !== value) {
         value = newValue;
 
         updateView();
       }
     }
   });
 }
 
 function observer(target) {
   if (typeof target !== "object" || target === null) {
     return target;
   }
 
   if (Array.isArray(target)) {
     target.__proto__ = arrProto;
   }
 //遍历对象取key
   for (let key in target) {
     defineReactive(target, key, target[key]);
   }
 }
 
 // 重新定义数组原型
 const oldAddrayProperty = Array.prototype;
 const arrProto = Object.create(oldAddrayProperty);
 ["push", "pop", "shift", "unshift", "spluce"].forEach(
   methodName =>
     (arrProto[methodName] = function() {
       updateView();
       oldAddrayProperty[methodName].call(this, ...arguments);
     })
 );
 
 // 视图更新
  function updateView() {
   console.log("视图更新");
 }
 
 // 声明要响应式的对象
 let data = {
   name: "一路向北",
   num: 1,
   info: {
     address: "北京" // 需要深度监听
   },
   nums: [666, 8788, 222]
 };
 
 // 执行响应式
 observer(data);

Vue3.0

这个版本中
那么vue3的Proxy算是这次Vue 3.0 最大的亮点,它不仅取代了Vue 2.0 的 Object.defineProperty 方法并且组建生成增快,减少一般的内存使用。

基于Proxy和Reflect,可以原生监听数组,可以监听对象属性的添加和删除。
不需要一次性遍历data的属性,可以显著提高性能。
因为Proxy是ES6新增的属性,有些浏览器还不支持,只能兼容到IE11 。

 const proxyData = new Proxy(data, {
   get(target,key,receive){ 
     // 只处理本身(非原型)的属性
     const ownKeys = Reflect.ownKeys(target)
     if(ownKeys.includes(key)){
       console.log('get',key) // 监听
     }
     const result = Reflect.get(target,key,receive)
     return result
   },
   set(target, key, val, reveive){
     // 重复的数据,不处理
     const oldVal = target[key]
     if(val == oldVal){
       return true
     }
     const result = Reflect.set(target, key, val,reveive)
     console.log('set', key, val)
     return result
   },
   deleteProperty(target, key){
     const result = Reflect.deleteProperty(target,key)
     console.log('delete property', key)
     console.log('result',result)
     return result
   }
 })

  // 声明要响应式的对象,Proxy会自动代理
 let data = {
   name: "一路向北",
   num: 1,
   info: {
     address: "北京" // 需要深度监听
   },
   nums: [666, 8788, 222]
 };

二、setup的加入就是为了让vue3使用组合式API(Composition API)。使用组合式API更符合大型项目的开发,通过setup可以将该部分抽离成函数,让其他开发者就不用关心该部分逻辑

<!-- 父组件 -->
<!-- 3.0版本这层 <div class="home">可以干掉! -->
<template>
  <div class="home">
    <div @click="isShow=!isShow">开关</div>
    
    <HelloWorld v-if="isShow" :msg="msg" :num='num' @list='list'>
      <template v-slot:www>
        <div>slot插槽</div>
      </template>
    </HelloWorld>

    <div>
      计算属性:{{smallName}}
    </div>
    
  </div>
</template>
<script lang="ts">
//setup里面用的一些属性需要从vue中引入
import { defineComponent,computed,watchEffect,watch, onBeforeMount, onBeforeUnmount, onBeforeUpdate, onMounted, onUnmounted, onUpdated, reactive, ref } from 'vue';
import HelloWorld from '@/components/HelloWorld.vue'; // @ is an alias to /src

export default defineComponent({
  name: 'Home',
  components: {
    HelloWorld,
  },
  
  setup(){
    let obj={
      name:'张三',
      age:18,
      fun:{
        name:'王二',
        age:22
      }
    }

    //reactive针对引用类型对象类型、数组类型 通过proxy将目标对象 变成代理对象 
    let num=reactive(obj)
    let objkey = reactive({
      data:1,
    });

    // ref处理基本类型  number  string等
    let isShow=ref(true)
    let msg=ref(1)


    // 计算属性
    let smallName = computed(()=>{
          return num.name + '-' + num.age
        })

    // 监听属性

    // 你可以认为他们是同一个功能的两种不同形态,底层的实现是一样的。
    // watch- 显式指定依赖源,依赖源更新时执行回调函数
    // watchEffect - 自动收集依赖源,依赖源更新时重新执行自身
 
    //监听整个reactive对象:
      watch(objkey, (n, o) => {
        console.log('watch1:',n.data, o.data);
      });
 
    //监听某个属性:
      watch(
        [objkey, () => objkey.data],
        (n, o) => {
          console.log("watch2:", n, o);
        }
      );
    // watchEffect - 自动收集依赖源,依赖源更新时重新执行自身 
      watchEffect(() => {
        console.log('watchEffect',msg.value,objkey)
      })
    // 点击事件
    function list(item:string){
        msg.value+=1
        num.name='李四'
        num.fun.name='赵五'
        objkey.data+=1
        
    }
    //return抛出去,模板上才可用这些值
    return{
      isShow,
      num,
      msg,
      list,
      smallName,
      objkey
    }
  }
});
</script>

三、vue2与3的生命周期对比,以及vue3子组件props接收参数问题

// 子组件
<template>
  <div class="hello">
    
    <button @click="btn">子组件点击按钮</button>
    <h4>子组件显示:{{ msg }}</h4>
    <a href="#">子组件显示:{{num.fun.name}}</a>
    <slot name="www"></slot>
  </div>
</template>

<script lang="ts">
import { defineComponent,reactive, onBeforeMount, onBeforeUnmount, onBeforeUpdate, onMounted, onUnmounted, onUpdated, toRefs } from 'vue'

export default defineComponent({
  name:'hollo',
  props:{
    msg:{
      type:Number,
      defalut:()=>''
    },
    num:{
      type:Object,
      defalut:{}
    }
  },

  // 也就说在 setup 函数中是无法使用 data 和 methods 中的数据和方法,而methods等可以使用setup中return出去的数据

  // setup(props,context) {
  setup(props,{attrs,emit,slots}) {
    //  1  props 是接受父向子传递的数据,并且需要子使用props接收所有的属性
    //  2  context是setup第二个参数,解构出attrs,emit,slots。  attrs获取当前组件中所有的属性 emit方法事件分发 slots 插槽,props中暴露的变量,就不会在context.attrs中暴露
    let { msg,num }=toRefs(props)
   
    console.log('3x','setup')

    console.log('props',props)
    console.log('attrs',attrs)
    console.log('slots',slots)
    console.log('msg',msg)

    const btn=()=>{
      emit('list',msg)
    }

    onBeforeMount(()=>{
      console.log('3x挂载前----onBeforeMount')
    })
    onMounted(()=>{
      console.log('3x挂载后----onMounted')
    })
    onBeforeUpdate(()=>{
      console.log('3x更新前----onBeforeUpdate')
    })
    onUpdated(()=>{
      console.log('3x更新后----onUpdated')
    })
    onBeforeUnmount(()=>{
      console.log('3x销毁钱----onBeforeUnmount')
    })
    onUnmounted(()=>{
      console.log('3x销毁后----onUnmounted')
    })
    return{
      btn
    }
  },


  beforeCreate(){
    console.log('2x---beforeCreate')
  },
  created(){
    console.log('2x---created')
  },
  beforeMount(){
    console.log('2x---beforeMount')
  },
  mounted(){
    console.log('2x---mounted')
  },
  beforeUpdate(){
    console.log('2x---beforeUpdate')
  },
  updated(){
    console.log('2x---updated')
  },
  beforeUnmount(){
     console.log('2x---beforeDestroy')
  },
  unmounted(){
    console.log('2x---destroyed')
  }
})
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped lang="scss">
h3 {
  margin: 40px 0 0;
}
ul {
  list-style-type: none;
  padding: 0;
}
li {
  display: inline-block;
  margin: 0 10px;
}
a {
  color: #42b983;
  text-decoration: none;
}
.hello{
  margin-top: 10px;
}
</style>

1、生命周期打印结果下图👇🏻

image.png

2、接下来我们在看看vue3里面的props的使用

1、父组件里面引入子组件,子组件上有msg是字符串和num是对象、 一个事件list、一个slot插槽

    <HelloWorld v-if="isShow" :msg="msg" :num='num' @list='list'>
      <template v-slot:www>
        <div>slot插槽</div>
      </template>
    </HelloWorld>
  let obj={
    name:'张三',
    age:18,
    fun:{
      name:'王二',
      age:22
    }
  }
  let count=1
  let isShow=ref(true)

  let msg=ref(count)
  let num=reactive(obj)

2、子组件里接收父组件的数据

<script lang="ts">
import { defineComponent,reactive, onBeforeMount, onBeforeUnmount, onBeforeUpdate, onMounted, onUnmounted, onUpdated, toRefs } from 'vue'

export default defineComponent({
name:'hollo',
//这地方接收方式和vue2一样用props接收
//注意:! 我们父组件传过来的msg和num如果在这接收了,那么setup内的attrs里面是看不到msg和num,
props:{
  msg:{
    type:Number,
    defalut:()=>''
  },
  num:{
    type:Object,
    defalut:{}
  }
},

// setup(props,context) {
setup(props,{attrs,emit,slots}) {
  //  1  props 是接受父向子传递的数据,并且需要子使用props接收所有的属性
  //  2  context  attrs获取当前组件中所有的属性 emit方法事件分发 slots 插槽,props中暴露的变量,就不会在context.attrs中暴露
  let { msg }=toRefs(props)
  // 注:setup函数是处于生命周期函数 beforeCreate 和 Created 两个钩子函数之间的函数
  // console.log('3x','setup')

  console.log('props',props)
  console.log('attrs',attrs)
  console.log('slots',slots)
  console.log('msg',msg)

  const btn=()=>{
    emit('list',msg)
  }

  return{
    btn
  }
},


})
</script>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,923评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,154评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,775评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,960评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,976评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,972评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,893评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,709评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,159评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,400评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,552评论 1 346
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,265评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,876评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,528评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,701评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,552评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,451评论 2 352

推荐阅读更多精彩内容