时间:2021-05-26
说实话,我一开始也不知道什么叫按需加载组件,组件还可以按需加载???后来知道了
学不完啊...没关系,看我的
按需加载组件,或者异步组件,主要是应用了component的 is 属性
template中的代码:
这里的每一个按钮,都要显示不同的组件,所以我让他们使用了同一个方法名
<template slot-scope="scope"> <el-button type="text" size="mini" @click="handleSchedule('CustomerInfoSchedule', scope.row.customer_id)" >详情</el-button> <el-button type="text" size="mini" @click="handleSchedule('VisitRecordSchedule', scope.row.customer_id)" >回访</el-button> <el-button type="text" size="mini" @click="handleSchedule('AddCustomerSchedule',scope.row.customer_id)" >编辑</el-button> <el-button type="text" size="mini" @click="handleSchedule('AddPeopleSchedule', scope.row.customer_id)" >添加联系人</el-button> </template> <component :is="currentComponent" :customer_id="customer_id" @componentResult="componentResult" > </component>script中的代码:
这里的组件使用request按需引入,我使用的点击事件,当事件触发的时候,引入对应的组件
首先在data中声明组件的属性
data() { return { currentComponent: "", customer_id:'', } }然后注册组件
这里的组件作为一个个方法,组件名是方法名,组件内容是方法体,有几个组件就写几个方法
components: { AddCustomerSchedule(resolve) { require(["../components/AddCustomer"], resolve); }, AddPeopleSchedule(resolve) { require(["../components/AddPeople"], resolve); }, CustomerInfoSchedule(resolve) { require(["../components/CustomerInfo"], resolve); }, VisitRecordSchedule(resolve) { require(["../components/VisitRecord"], resolve); }, },定义的方法
// 这里直接接收name,然后相对应的引入组件,同时传值 handleSchedule(name, id) { this.customer_id = id; this.currentComponent = name; }, // 这是子组件触发父组件返回回来的方法,因为我的组件都是弹出框 // 所以在子组件关闭弹出框的时候,我让this.currentComponent为空 // 同时可以选择性的刷新数据 componentResult(type) { if (type == "upData") { this.getTableData(); } else { this.currentComponent = ""; } },总结
以上所述是小编给大家介绍的vue实现按需加载组件及异步组件功能,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
vue-router配置路由,使用vue的异步组件技术,可以实现按需加载。这种方式下一个组件生成一个js文件用例:{path:'/promisedemo',na
本文介绍了将Vue组件库更换为按需加载的方法步骤,分享给大家,具体如下:按需加载DEMO仓库地址背景我司前端团队拥有一套支撑公司业务系统的UI组件库,经过多次迭
按需加载的原理按需加载,本质上是把一个组件库的不同组件拆分成不同文件,按照需要引用对应的文件,而该文件暴露一个install方法,供Vue.use使用。比如:我
前言作为一个网站应用,加载速度是非常重要的。加载速度,一个是程序的合理安排,如以组件按需加载,一个是js、css等资源的异步加载。在Vue项目中,引入到工程中的
1.使用elementuiplus版本实现按需加载组件会报错Error:Cannotfindmodule'babel-preset-es2015'from'D: