2021-10-08 vue动态组件加载(按需)

应用

<template>
	<div class="contain">
    	<component :is="curComponent[0]" :ref="curComponent[1]"></component>
    </div>
</template>
<script>
	// 注意这里不再直接引入组件,而是引入映射关系
    import map from './components/common.js'
    export default {
        data() {
            return {
                key: '', //这里的key用于区分不同的组件,只需动态变化key值,对应的组件由计算属性自动引入
            }
        },
        computed: {
            curComponent() {
                let k = this.key + 'info' // 组件映射关系标志
                let p = map[k] // 组件相对路径
                let c = () => import(`${p}`) // 动态组件
                let r = this.key + 'Ref' // ref
                return [c, r]
            }
        }
    }
</script>

common.js

export default {
    'key1-info': './components/com1/com1.vue',
    'key2-info': './components/com2/com2.vue',
}
上一篇:【论文阅读】Wikipedia用た本の有現出デタッの築を用いた日本語の固有表現抽出のデータセットの構築[言語処理学会第27回年次大会(NLP2021)]


下一篇:VUE父子组件传值基本原理