li-guang
2020-12-15 101d655a6d79d64fb8a46649888542c4bfbc45d1
hive-app/components/popover/index.vue
@@ -1,14 +1,23 @@
<template>
   <view v-show="isShow">
   <view class="content">
      <slot></slot>
   </view>
</template>
<script>
   export default{
      data(){
         return{
         }
      },
      methods:{
      }
   }
</script>
<style>
   .content{
      background: #4c4c4c;
      border-radius: 4px;
   }
</style>