乐趣区

关于vue2:vue2升级vue3遇到的问题汇总

Vue3 中的透传 Attributes / $attrs:简化组件开发的利器
<template>
<div>

<component :is="dynamicComponent" v-bind="$attrs" />

</div>
</template>

<script setup>
const dynamicComponent = ‘ChildComponent’;

退出移动版