2022年3月8日

vue 父子组件 渲染过程

摘要: vue 的子组件有两种方式:同步和异步,在这两种引入方式下,父子组件加载的顺序也是不一样的。 同步引入 import Page from '@/components/page' 异步引入 const Page = () => import('@/components/page'); // 或者: c 阅读全文

posted @ 2022-03-08 12:18 zhishiyv 阅读(639) 评论(0) 推荐(0) 编辑

导航