溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Vue3中的API怎么用

發(fā)布時間:2022-01-27 09:39:31 來源:億速云 閱讀:155 作者:iii 欄目:開發(fā)技術

這篇文章主要講解了“Vue3中的API怎么用”,文中的講解內(nèi)容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Vue3中的API怎么用”吧!

1. 初始化項目

// ① npm i -g @vue/cli
// ② vue create my-project
// ③ npm install @vue/composition-api -S


// ④ main,js
import Vue from 'vue'
import VueCompositionApi from '@vue/composition-api'
Vue.use(VueCompositionApi)

2. setup方法

setup 是 vue3.x 中新的操作組件屬性的方法,它是組件內(nèi)部暴露出所有的屬性和方法的統(tǒng)一API。

2.1 執(zhí)行時機

setup的執(zhí)行時機在:beforeCreate 之后 created之前

setup(props, ctx) {
    console.log('setup')
  },
  beforeCreate() {
    console.log('beforeCreate')
  },
  created() {
    console.log('created')
  },
2.2 接受props數(shù)據(jù)
// 通過 setup 函數(shù)的第一個形參,接收 props 數(shù)據(jù):
setup(props) {
  console.log(props)
},
// 在 props 中定義當前組件允許外界傳遞過來的參數(shù)名稱:
props: {
    p1: String
}
/*
{}
p1: "傳值給 com-setup"
get p1: ? reactiveGetter()
set p1: ? reactiveSetter(newVal)
__proto__: Object
*/
2.3 context

setup 函數(shù)的第二個形參是一個上下文對象,這個上下文對象中包含了一些有用的屬性,這些屬性在 vue 2.x 中需要通過 this 才能訪問到,在 vue 3.x 中,它們的訪問方式如下:

setup(props, ctx) {
    console.log(ctx)
    console.log(this) // undefined
  },
/*
attrs: Object
emit: ? ()
listeners: Object
parent: VueComponent
refs: Object
root: Vue
...
*/

注意:在 setup() 函數(shù)中無法訪問到 this

3. reactive

reactive 函數(shù)接收一個普通函數(shù),返回一個響應式的數(shù)據(jù)對象。

reactive 函數(shù)等價于 vue 2.x 中的 Vue.observable() 函數(shù),vue 3.x 中提供了 reactive() 函數(shù),用來創(chuàng)建響應式的數(shù)據(jù)對象,基本代碼示例如下:

  <div>

    
    <p>當前的 count 值為:{{count}}</p>
    <button @click="count += 1">+1</button>
  </div>






import {reactive} from '@vue/composition-api'
export default {
  setup(props, ctx) {
    // 創(chuàng)建響應式數(shù)據(jù)對象,得到的 state 類似于 vue 2.x 中 data() 返回的響應式對象
    const state = reactive({ count: 0 })
    state.count += 1
    console.log(state)
     // setup 函數(shù)中將響應式數(shù)據(jù)對象 return 出去,供 template 使用
    return state
  }
}

4. ref

ref() 函數(shù)用來根據(jù)給定的值創(chuàng)建一個響應式的數(shù)據(jù)對象,ref() 函數(shù)調(diào)用的返回值是一個對象,這個對象上只包含一個 .value 屬性:

  <div>
    <h4>02.ref.vue 文件</h4>
    <p>refCount:{{refCount}}</p>
    <button @click="refCount += 1">+1</button>
  </div>






import { ref } from '@vue/composition-api'
export default {
  setup() {
    // / 創(chuàng)建響應式數(shù)據(jù)對象 count,初始值為 0
    const refCount = ref(0)
    // 如果要訪問 ref() 創(chuàng)建出來的響應式數(shù)據(jù)對象的值,必須通過 .value 屬性才可以,只有在setup內(nèi)部才需要 .value 屬性
    console.log(refCount.value) // 輸出 0
    // 讓 refCount 的值 +1
        refCount.value++
    // 再次打印 refCount 的值
        console.log(refCount.value) // 輸出 1
    return {
      refCount
    }
  }
}
4.1 在 reactive 對象中訪問 ref 創(chuàng)建的響應式數(shù)據(jù)

當把 ref() 創(chuàng)建出來的響應式數(shù)據(jù)對象,掛載到 reactive() 上時,會自動把響應式數(shù)據(jù)對象展開為原始的值,不需通過 .value 就可以直接被訪問,例如:

setup() {
  const refCount = ref(0)
  const state = reactive({refCount})
  console.log(state.refCount) // 輸出 0
  state.refCount++ // 此處不需要通過 .value 就能直接訪問原始值
  console.log(refCount) // 輸出 1
  return {
    refCount
  }
}

注意:新的 ref 會覆蓋舊的 ref,示例代碼如下:

setup() {
  // 創(chuàng)建 ref 并掛載到 reactive 中
  const c1 = ref(0);
  const state = reactive({ c1 });


  // 再次創(chuàng)建 ref,命名為 c2
  const c2 = ref(9);
  // 將 舊 ref c1 替換為 新 ref c2
  state.c1 = c2;
  state.c1++;


  console.log(state.c1); // 輸出 10
  console.log(c2.value); // 輸出 10
  console.log(c1.value); // 輸出 0
}

5. isRef

isRef() 用來判斷某個值是否為 ref() 創(chuàng)建出來的對象;應用場景:當需要展開某個可能為 ref() 創(chuàng)建出來的值的時候,例如:

import { ref, reactive, isRef } from "@vue/composition-api";
export default {
  setup() {
    const unwrapped = isRef(foo) ? foo.value : foo
  }
};

6. toRefs

toRefs() 函數(shù)可以將 reactive() 創(chuàng)建出來的響應式對象,轉換為普通的對象,只不過,這個對象上的每個屬性節(jié)點,都是 ref() 類型的響應式數(shù)據(jù)。

  <div>
    <h4>03.toRefs.vue文件</h4>
    <p>{{ count }} - {{ name }}</p>
    <button @click="count += 1">+1</button>
    <button @click="add">+1</button>
  </div>






import { reactive, toRefs } from "@vue/composition-api";
export default {
  setup() {
    // 響應式數(shù)據(jù)
    const state = reactive({ count: 0, name: "zs" });
    // 方法
    const add = () => {
      state.count += 1;
    };
    return {
      // 非響應式數(shù)據(jù)
      // ...state,
      // 響應式數(shù)據(jù)
      ...toRefs(state),
      add
    };
  }
};

7. computed計算屬性

7.1 只讀的計算屬性
  <div>
    <h4>04.computed.vue文件</h4>
    <p>refCount: {{refCount}}</p>
    <p>計算屬性的值computedCount : {{computedCount}}</p>
    <button @click="refCount++">refCount + 1</button>

        
    <button @click="computedCount++">計算屬性的值computedCount + 1</button>
  </div>






import { computed, ref } from '@vue/composition-api'
export default {
  setup() {
    const refCount = ref(1)
    // 只讀
    let computedCount = computed(() => refCount.value + 1)
    console.log(computedCount)
    return {
      refCount,
      computedCount
    }
  }
};
7.2 可讀可寫的計算屬性
  <div>
    <h4>04.computed.vue文件</h4>
    <p>refCount: {{refCount}}</p>
    <p>計算屬性的值computedCount : {{computedCount}}</p>
    <button @click="refCount++">refCount + 1</button>
  </div>






import { computed, ref } from '@vue/composition-api'
export default {
  setup() {
    const refCount = ref(1)
    // 可讀可寫
    let computedCount = computed({
      // 取值函數(shù)
      get: () => refCount.value + 1,
      // 賦值函數(shù)
      set: val => {
        refCount.value = refCount.value -5
      }
    })
    console.log(computedCount.value)
    // 為計算屬性賦值的操作,會觸發(fā) set 函數(shù)
    computedCount.value = 10
    console.log(computedCount.value)
    // 觸發(fā) set 函數(shù)后,count 的值會被更新
    console.log(refCount.value)
    return {
      refCount,
      computedCount
    }
  }
};

8. watch

watch() 函數(shù)用來監(jiān)視某些數(shù)據(jù)項的變化,從而觸發(fā)某些特定的操作,使用之前需要按需導入:

import { watch } from '@vue/composition-api'
8.1 基本用法
  <div>
    <h4>05.watch.vue文件</h4>
    <p>refCount: {{refCount}}</p>
  </div>






import { watch, ref } from '@vue/composition-api'
export default {
  setup() {
    const refCount = ref(100)
    // 定義 watch,只要 count 值變化,就會觸發(fā) watch 回調(diào)
    // 組件在第一次創(chuàng)建的時候執(zhí)行一次 watch
    watch(() => console.log(refCount.value), { lazy: false})
    setInterval(() => {
      refCount.value += 2
    }, 5000)
    return {
      refCount
    }
  }
};
8.2 監(jiān)視數(shù)據(jù)源

監(jiān)視 reactive 類型的數(shù)據(jù)源:

  <div>
    <h4>05.watch.vue文件</h4>
    <p>count: {{count}}</p> // 不是響應式數(shù)據(jù)
  </div>






import { watch, ref, reactive } from '@vue/composition-api'
export default {
  setup() {
    const state = reactive({count: 100})
    watch(
      // 監(jiān)聽count
      () => state.count,
      // 如果變換 執(zhí)行以下函數(shù)
      (newVal, oldVala) => {
        console.log(newVal, oldVala)
      },
      { lazy: true }
    )
    setInterval(() => {
      state.count += 2
    }, 5000)
    return state
  }
};

監(jiān)視 ref 類型的數(shù)據(jù)源:

export default {
  setup() {
    // 定義數(shù)據(jù)源
    let count = ref(0);
    // 指定要監(jiān)視的數(shù)據(jù)源
    watch(count, (count, prevCount) => {
      console.log(count, prevCount)
    })
    setInterval(() => {
      count.value += 2
    }, 2000)
    console.log(count.value)
    return {
      count
    }
  }
};
8.3 監(jiān)聽多個數(shù)據(jù)源

監(jiān)視 reactive 類型的數(shù)據(jù)源:

export default {
  setup() {
    const state = reactive({count: 100, name: 'houfei'})
    watch(
      // 監(jiān)聽count name
      [() => state.count, () => state.name],
      // 如果變換 執(zhí)行以下函數(shù)
      ([newCount, newName], [oldCount, oldName]) => {
        console.log(newCount, oldCount)
        console.log(newName, oldName)
      },
      { lazy: true} // 在 watch 被創(chuàng)建的時候,不執(zhí)行回調(diào)函數(shù)中的代碼
    )
    setTimeout(() => {
      state.count += 2
      state.name = 'qweqweewq'
    }, 3000)
    return state
  }
};

監(jiān)視 ref 類型的數(shù)據(jù)源:

export default {
  setup() {
    // 定義數(shù)據(jù)源
    const count = ref(10)
    const name = ref('zs')
    // 指定要監(jiān)視的數(shù)據(jù)源
    watch(
      [count, name],
      ([newCount, newName], [oldCount, oldName]) => {
        console.log(newCount, oldCount)
        console.log(newName, oldName)
      },
      { lazy: true}
    )
    setInterval(() => {
      count.value += 2
    }, 2000)
    console.log(count.value)
    return {
      count
    }
  }
};
8.4 清除監(jiān)視

在 setup() 函數(shù)內(nèi)創(chuàng)建的 watch 監(jiān)視,會在當前組件被銷毀的時候自動停止。如果想要明確地停止某個監(jiān)視,可以調(diào)用 watch() 函數(shù)的返回值即可,語法如下:

// 創(chuàng)建監(jiān)視,并得到 停止函數(shù)
const stop = watch(() => {
  /* ... */
})


// 調(diào)用停止函數(shù),清除對應的監(jiān)視
stop()


  <div>

    
    <p>count: {{ count }}</p>
    <button @click="stopWatch">停止監(jiān)聽</button>
  </div>






import { watch, ref, reactive } from "@vue/composition-api";
export default {
  setup() {
    // 定義數(shù)據(jù)源
    const count = ref(10)
    const name = ref('zs')
    // 指定要監(jiān)視的數(shù)據(jù)源
    const stop = watch(
      [count, name],
      ([newCount, newName], [oldCount, oldName]) => {
        console.log(newCount, oldCount)
        console.log(newName, oldName)
      },
      { lazy: true}
    )
    setInterval(() => {
      count.value += 2
      name.value = 'houyue'
    }, 2000)
    // 停止監(jiān)視
    const stopWatch = () => {
      console.log("停止監(jiān)視,但是數(shù)據(jù)還在變化")
      stop()
    }
    console.log(count.value)
    return {
      stop,
      count,
      stopWatch
    }
  }
};
8.5 在watch中清除無效的異步任務

有時候,當被 watch 監(jiān)視的值發(fā)生變化時,或 watch 本身被 stop 之后,我們期望能夠清除那些無效的異步任務,此時,watch 回調(diào)函數(shù)中提供了一個 cleanup registrator function 來執(zhí)行清除的工作。這個清除函數(shù)會在如下情況下被調(diào)用:

watch 被重復執(zhí)行了

watch 被強制 stop 了

Template 中的代碼示例如下:

  <div>

    
    <input type="text" v-model="keywords" />
    <p>keywords:--- {{ keywords }}</p>
  </div>

Script 中的代碼示例如下:

import { watch, ref, reactive } from "@vue/composition-api";


export default {
  setup() {
    // 定義響應式數(shù)據(jù) keywords
    const keywords = ref("");


    // 異步任務:打印用戶輸入的關鍵詞
    const asyncPrint = val => {
      // 延時 1 秒后打印
      return setTimeout(() => {
        console.log(val);
      }, 1000);
    };


    // 定義 watch 監(jiān)聽
    watch(
      keywords,
      (keywords, prevKeywords, onCleanup) => {
        // 執(zhí)行異步任務,并得到關閉異步任務的 timerId
        const timerId = asyncPrint(keywords);
        // 如果 watch 監(jiān)聽被重復執(zhí)行了,則會先清除上次未完成的異步任務
        onCleanup(() => clearTimeout(timerId));
      },
      // watch 剛被創(chuàng)建的時候不執(zhí)行
      { lazy: true }
    );


    // 把 template 中需要的數(shù)據(jù) return 出去
    return {
      keywords
    };
  }
};

9. provide & inject 組件傳值

provide() 和 inject() 可以實現(xiàn)嵌套組件之間的數(shù)據(jù)傳遞。這兩個函數(shù)只能在 setup() 函數(shù)中使用。父級組件中使用 provide() 函數(shù)向下傳遞數(shù)據(jù);子級組件中使用 inject() 獲取上層傳遞過來的數(shù)據(jù)。

9.1 共享普通數(shù)據(jù)

app.vue 根組件:

  <div id="app">
    <h2>父組件</h2>
    <button @click="color = 'blue'">藍色</button>
    <button @click="color = 'red'">紅色</button>
    <button @click="color = 'yellow'">黃色</button>

    

    
  </div>






import { ref, provide } from '@vue/composition-api'
import Son from './components/06.son.vue'


export default {
  name: 'app',
  components: {
    'son': Son
  },
  setup() {
    const color = ref('green')
    provide('themecolor', color)
    return {
     color
    }
  }
}

06.son.vue son 組件:

  <div>
    <h4 :>son 組件</h4>

    
  </div>






import { inject } from '@vue/composition-api'
import Grandson from './07.grandson.vue'
export default {
    components: {
    'grandson': Grandson
  },
  setup() {
    const color = inject('themecolor')
    return {
     color
    }
  }
}

07.grandson.vue son 組件:

  <div>
    <h6 :>grandson 組件</h6>
  </div>






import { inject } from '@vue/composition-api'
export default {
  setup() {
    const color = inject('themecolor')
    return {
      color
    }
  }
}
9.2 共享ref響應式數(shù)據(jù)

app.vue 根組件:

  <div id="app">
    <h2>父組件</h2>

    
  </div>






import { provide } from '@vue/composition-api'
import Son from './components/06.son.vue'


export default {
  name: 'app',
  components: {
    'son': Son
  },
  setup() {
    provide('themecolor', 'red')
  }
}

06.son.vue son 組件:

  <div>
    <h4 :>son 組件</h4>

    
  </div>






import { inject } from '@vue/composition-api'
import Grandson from './07.grandson.vue'
export default {
    components: {
    'grandson': Grandson
  },
  setup() {
    const color = inject('themecolor')
    return {
      color
    }
  }
}

07.grandson.vue son 組件:

template>
  <div>
    <h6 :>grandson 組件</h6>
  </div>






import { inject } from '@vue/composition-api'
export default {
  setup() {
    const color = inject('themecolor')
    return {
      color
    }
  }
}

10. 節(jié)點的引用 template ref

10.1 dom的引用
  <div>
    <h4 ref="h4Ref">TemplateRefOne</h4>
  </div>






import { ref, onMounted } from '@vue/composition-api'


export default {
  setup() {
    // 創(chuàng)建一個 DOM 引用
    const h4Ref = ref(null)


    // 在 DOM 首次加載完畢之后,才能獲取到元素的引用
    onMounted(() => {
      // 為 dom 元素設置字體顏色
      // h4Ref.value 是原生DOM對象
      h4Ref.value.style.color = 'red'
    })


    // 把創(chuàng)建的引用 return 出去
    return {
      h4Ref
    }
  }
}
10.2 組件的引用

App父組件:

  <div id="app">
    <h2>父組件</h2>
    <button @click="showComRef">展示子組件的值</button>

    
  </div>








import Son from './components/06.son.vue'


export default {
  name: 'app',
  components: {
    'son': Son
  },
  setup() {
    const comRef = ref(null) 
    const showComRef = () => {
      console.log(comRef)
      console.log('str1的值是' + comRef.value.str1)
      comRef.value.setStr1()
    }
    return {
      comRef,
      showComRef
    }
  }
}

06.son.vue子組件:

  <div>
    <h4 :>son 組件</h4>
    <p>{{str1}}</p>
  </div>






import { ref } from '@vue/composition-api'
export default {
  setup() {
    const str1 = ref('這是一個子組件!!')
    const setStr1 = () => {
      str1.value = '被賦值了'
    }
    return {
      str1,
      setStr1
    }
  }
}

11 nextTick

  <div>
    <h4>09.nextTick 組件</h4>
    <p>學習 $nextTick</p>
    <button v-if="isShowInput === false" @click="showInput">展示文本框</button>
    <input type="text" v-else ref="ipt">
  </div>






export default {
  data() {
    return {
      isShowInput: false
    }
  },
  methods: {
    showInput() {
      this.isShowInput = !this.isShowInput
      // console.log(this.$refs)
      this.$nextTick(() => {
        this.$refs.ipt.focus()
      })
    }
  }
}

感謝各位的閱讀,以上就是“Vue3中的API怎么用”的內(nèi)容了,經(jīng)過本文的學習后,相信大家對Vue3中的API怎么用這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI