index.vue 459 Bytes
Newer Older
wangdanlei's avatar
wangdanlei committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
/**
* @Description:
* @author cxg
* @date 2022/10/09
*/
<template>
  <div class="-page">
    测试自定义组件
  </div>
</template>

<script>
export default {
  components: {},
  props: {
    baseComInfo: {
      type: Object,
      default: () => {}
    }
  },
  data() {
    return {
    }
  },

  computed: {},
  mounted() {},
  methods: {
    eventFunc(params) {
      console.log(this.baseComInfo)
    }
  }
}

</script>
<style lang='scss'>
</style>