vue 高级特性 动态组件

动态组件用法

<component :is="组件的名字"></component>

动态组件使用的场景:根据不同的数据,来渲染不同的组件

1.动态组件基本使用:引入,定义(这里需要特别注意), 注册, 使用缺一不可!!

<template>
  <!-- rights组件 -->
  <div class="header">
    // 使用动态组件
    <component :is="componentInp"></component>
  </div>
</template>

<script type="text/ecmascript-6">
// 引入
import Inp from './inp'
export default {
  data() {
    return {
      // 定义
      componentInp: 'Inp',
    }
  },
  components: {
// 注册
    Inp,
  }
}
</script>
<template>
  <!-- inp组件 -->
  <div>
    this is inp
  </div>
</template>

<script>
export default {
  data() {
    return {
      info: {
        title: 'inp title',
        city: '重庆'
      }
    }
  },
}
</script>

2.动态组件使用场景:根据不同的数据,来渲染组件

<template>
  <!-- rights组件 -->
  <div>
    <div v-for="(val, key) in newDate" :key="key">
      <component :is="val.type"></component>
    </div>
  </div>
</template>

<script type="text/ecmascript-6">
import a1 from '../user/A'
import b1 from '../user/B'
export default {
  data() {
    return {
      newDate:{1:{
        type: a1 // 这里类似定义组件
      },
      2:{
        type: b1
      },
    }
    }
  },
  // 无需注册组件
  components: {

  }
}
</script>

<style lang="scss" scoped></style>

 A和B 组件结构一致

<template>
  <div>
    a组件
  </div>
  
</template>

<script>
export default {
  data() {
    return {
    }
  },
 
}
</script>

<style>

</style>

3.动态组件使用场景

v-once:第一次渲染就会放在内存中,不会被销毁,主要用于静态数据

父组件home

<template>
    <div>
        <h1>home组件</h1>
        <p>动态组件及v-once</p>
        <!-- <child1 v-if="type==='child1'"></child1>
        <child2 v-if="type==='child2'"></child2> -->
        <component :is="type"></component>
        <button @click="change">切换</button>
    </div>
  
</template>

<script>
import child1 from './Child1'
import child2 from './Child2'
export default {
    data() {
        return {
          type: 'child1'  
        }
    },
    components: {
        child1,
        child2
    },
    methods: {
        change() {
            this.type = this.type ==='child1' ? 'child2' : 'child1'
        }
    }
}
</script>

子组件child1和child2

<template>
    <div v-once>
        child1组件
    </div>
</template>
<template>
    <div v-once>
        child2组件
    </div>
</template>

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值