zl程序教程

您现在的位置是:首页 >  前端

当前栏目

Vue 与 动态组件 import 的尝试

Vue组件 动态 import 尝试
2023-09-11 14:16:38 时间
<template>
    <component :is='fuck' :data='data'></component>
</template>

<script>
    export default {
        data() {
            return {
                fuck: null
            }
        },
        props: ['type', 'data'],
        mounted() {
            this.fuck = import(`/templates/${this.type || 'default'}`)
        },
    }
</script>