首页 > 其他分享 >037.Vue3入门,动态组件

037.Vue3入门,动态组件

时间:2024-08-11 20:38:24浏览次数:13  
标签:Child1 vue console log beforeDestroy Vue3 组件 037 change

1、App.vue代码如下:

<template>
  <component :is="tabComponent"></component>
  <button @click="change">切换组件</button>
</template>

<script>
import Child1 from "./view/Child1.vue"
import Child2 from "./view/Child2.vue"

export default {
  data() {
    return {
      tabComponent: "Child1"
    }
  },
  components: {
    Child1,
    Child2
  },
  methods: {
    change() {
      console.log('change', this.tabComponent == "Child1")
      this.tabComponent = this.tabComponent == "Child1" ? "Child2" : "Child1";
    }
  }
}
</script>

2、Child1.vue代码如下;

<template>
  <div>我是子页面1</div>
</template>

<script>
export default {
  beforeCreate() { console.log('beforeCreate') },
  created() { console.log('created') },
  beforeMount() { console.log('beforeMount') },
  beforeUpdate() { console.log('beforeUpdate') },
  beforeDestroy() { console.log('beforeDestroy') },
  mounted() { console.log('mounted') },
  updated() { console.log('updated') },
  destroyed() { console.log('destroyed') },
  methods: { change() { console.log('change') }
  }
}
</script>

3、Child.vue代码如下:

<template>
  <div>我是子页面2</div>
</template>

<script>
export default {
  beforeCreate() { console.log('beforeCreate') },
  created() { console.log('created') },
  beforeMount() { console.log('beforeMount') },
  beforeUpdate() { console.log('beforeUpdate') },
  beforeDestroy() { console.log('beforeDestroy') },
  mounted() { console.log('mounted') },
  updated() { console.log('updated') },
  destroyed() { console.log('destroyed') },
  methods: { change() { console.log('change') }
  }
}
</script>

4、效果如下:

 

标签:Child1,vue,console,log,beforeDestroy,Vue3,组件,037,change
From: https://www.cnblogs.com/tianpan2019/p/18353869

相关文章