index.vue 309 Bytes
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
<template>
  <div id="business_container">
    <router-view></router-view>
  </div>
</template>

<script>

export default {
  created:()=>{
    console.log("进入业务交易界面")
    
  }
}
</script>

<style>
  #business_container{
    height: 100%;
    position: absolute;
    width: 100%;
  }
</style>