组件里面调用组建的方法

2021/8/31 6:08:12

本文主要是介绍组件里面调用组建的方法,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 

 

<template>
 <div>
    <a-menu mode="horizontal" @click="menuClick" v-model=current>
      <a-sub-menu>
        <span slot="title" class="submenu-title-wrapper">
          <a-icon type="DataCleaning" />测试数据清理</span>
        <a-menu-item key="DataCleaning_1">清除B2C购课用户信息</a-menu-item>
      </a-sub-menu>
    </a-menu>
     <DataCleaning class="position" v-if='selectnum=="DataCleaning_1"'> </DataCleaning>
 </div>
</template>

<script>
import DataCleaning from "../../../components/tool/b_end/DataCleaning"
 
  export default {
    data() {
      return {
        //控制默认选择
        current: ['DataCleaning_1'],
        selectnum:"DataCleaning_1",
      }
    },
   methods: {
    menuClick(e) {
      console.log(e.key);
      this.selectnum=e.key
    },
     
    },
    components:{
      DataCleaning,
    },
  }


</script>

<style>
.position{
   position:relative;top:50px;}

</style>

  



这篇关于组件里面调用组建的方法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程