index.vue 508 Bytes
<template>
    <Lshs :type="type" :bsm="bsm"></Lshs>
</template>

<script>

  import Lshs from '@components/lshs/index';

export default {
  name:"",
  components:{Lshs},
  props:{
      bsm: {
          type: String,
          default: "",
      },
      type: {
          type: String,
          default: "",
      },
  },
  data(){
    return {
      data : {}
    }
  },
  created(){

  },
  mounted(){
  },
  methods: {
  },
  computed: {},
  watch: {},
}
</script>
<style scoped  lang="less">

</style>