index.vue 454 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 {
    }
  },
  created(){},
  mounted(){},
  methods:{},
  computed: {},
  watch: {},
}
</script>
<style scoped  lang="less">
</style>