2023-03-10|閱讀時間 ‧ 約 2 分鐘

Vue 3.2 defineProps 用法

  • 父元件
傳遞變數時須加上冒號
<template>
    <Product :main_category_id="main_category_id" :sub_category_id="sub_category_id"/>
</template>
  • 子元件
接收props用法如下
<script setup>

    const props = defineProps({
        main_category_id: String,
        sub_category_id: String
    });
  //props.main_category_id

</script>
本筆記參考:
分享至
成為作者繼續創作的動力吧!
© 2024 vocus All rights reserved.