动态绑定不能直接写,子组件名字,要在父组件的data中现定义一个变量,在赋值为子组件名


<template>
  <div id="content">
    <keep-alive>
      <!-- 动态绑定不能直接写,子组件名字,要在父组件的data中现定义一个变量,在赋值为子组件名 -->
      <component :is='StuManaga'>
        
      </component>
    </keep-alive>
      <h2>欢迎来到SAM9029 学生管理系统</h2>
  </div>
</template>

<script>
import StuManaga from './content/StuManaga.vue'

export default {
  components:{
    StuManaga,
  },
  data:function(){
    return(){
        currentCpn:'myBorrowCpn',
    }
  }

}
</script>

<style>

</style>

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐