vue_toast提示信息

预览:

源码:

<template>
  <div class="toast" v-show="show">
    <div>{{message}}</div>
  </div>
</template>

<script>
  export default {
    name: "toast",
    props:{
      message:{
        type: String,
        default: ''
      },
      show:{
        type: Boolean,
        default: false
      }
    }
  }
</script>

<style scoped>
  .toast{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);

    color: #fff;
    background-color: rgba(0,0,0,.75);
  }
</style>

posted @ 2021-12-22 15:26  博客zhu虎康  阅读(103)  评论(0编辑  收藏  举报